ne of ZLIB_ENCODING_* constants. * @return string The compressed string. * @throws ZlibException * */ function gzcompress(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_DEFLATE): string { error_clear_last(); $result = \gzcompress($data, $level, $encoding); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function returns a decoded version of the input * data. * * @param string $data The data to decode, encoded by gzencode. * @param int $length The maximum length of data to decode. * @return string The decoded string. * @throws ZlibException * */ function gzdecode(string $data, int $length = null): string { error_clear_last(); if ($length !== null) { $result = \gzdecode($data, $length); } else { $result = \gzdecode($data); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function compresses the given string using the DEFLATE * data format. * * For details on the DEFLATE compression algorithm see the document * "DEFLATE Compressed Data Format * Specification version 1.3" (RFC 1951). * * @param string $data The data to deflate. * @param int $level The level of compression. Can be given as 0 for no compression up to 9 * for maximum compression. If not given, the default compression level will * be the default compression level of the zlib library. * @param int $encoding One of ZLIB_ENCODING_* constants. * @return string The deflated string. * @throws ZlibException * */ function gzdeflate(string $data, int $level = -1, int $encoding = ZLIB_ENCODING_RAW): string { error_clear_last(); $result = \gzdeflate($data, $level, $encoding); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function returns a compressed version of the input * data compatible with the output of the * gzip program. * * For more information on the GZIP file format, see the document: * GZIP file format specification * version 4.3 (RFC 1952). * * @param string $data The data to encode. * @param int $level The level of compression. Can be given as 0 for no compression up to 9 * for maximum compression. If not given, the default compression level will * be the default compression level of the zlib library. * @param int $encoding_mode The encoding mode. Can be FORCE_GZIP (the default) * or FORCE_DEFLATE. * * Prior to PHP 5.4.0, using FORCE_DEFLATE results in * a standard zlib deflated string (inclusive zlib headers) after a gzip * file header but without the trailing crc32 checksum. * * In PHP 5.4.0 and later, FORCE_DEFLATE generates * RFC 1950 compliant output, consisting of a zlib header, the deflated * data, and an Adler checksum. * @return string The encoded string. * @throws ZlibException * */ function gzencode(string $data, int $level = -1, int $encoding_mode = FORCE_GZIP): string { error_clear_last(); $result = \gzencode($data, $level, $encoding_mode); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Gets a (uncompressed) string of up to length - 1 bytes read from the given * file pointer. Reading ends when length - 1 bytes have been read, on a * newline, or on EOF (whichever comes first). * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @param int $length The length of data to get. * @return string The uncompressed string. * @throws ZlibException * */ function gzgets($zp, int $length = null): string { error_clear_last(); if ($length !== null) { $result = \gzgets($zp, $length); } else { $result = \gzgets($zp); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Identical to gzgets, except that * gzgetss attempts to strip any HTML and PHP * tags from the text it reads. * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @param int $length The length of data to get. * @param string $allowable_tags You can use this optional parameter to specify tags which should not * be stripped. * @return string The uncompressed and stripped string. * @throws ZlibException * */ function gzgetss($zp, int $length, string $allowable_tags = null): string { error_clear_last(); if ($allowable_tags !== null) { $result = \gzgetss($zp, $length, $allowable_tags); } else { $result = \gzgetss($zp, $length); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * This function inflates a deflated string. * * @param string $data The data compressed by gzdeflate. * @param int $length The maximum length of data to decode. * @return string The original uncompressed data. * * The function will return an error if the uncompressed data is more than * 32768 times the length of the compressed input data * or more than the optional parameter length. * @throws ZlibException * */ function gzinflate(string $data, int $length = 0): string { error_clear_last(); $result = \gzinflate($data, $length); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Reads to EOF on the given gz-file pointer from the current position and * writes the (uncompressed) results to standard output. * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @return int The number of uncompressed characters read from gz * and passed through to the input. * @throws ZlibException * */ function gzpassthru($zp): int { error_clear_last(); $result = \gzpassthru($zp); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Sets the file position indicator of the given gz-file pointer to the * beginning of the file stream. * * @param resource $zp The gz-file pointer. It must be valid, and must point to a file * successfully opened by gzopen. * @throws ZlibException * */ function gzrewind($zp): void { error_clear_last(); $result = \gzrewind($zp); if ($result === false) { throw ZlibException::createFromPhpError(); } } /** * This function uncompress a compressed string. * * @param string $data The data compressed by gzcompress. * @param int $length The maximum length of data to decode. * @return string The original uncompressed data. * * The function will return an error if the uncompressed data is more than * 32768 times the length of the compressed input data * or more than the optional parameter length. * @throws ZlibException * */ function gzuncompress(string $data, int $length = 0): string { error_clear_last(); $result = \gzuncompress($data, $length); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * * * @param resource $resource * @return int Returns number of bytes read so far. * @throws ZlibException * */ function inflate_get_read_len($resource): int { error_clear_last(); $result = \inflate_get_read_len($resource); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Usually returns either ZLIB_OK or ZLIB_STREAM_END. * * @param resource $resource * @return int Returns decompression status. * @throws ZlibException * */ function inflate_get_status($resource): int { error_clear_last(); $result = \inflate_get_status($resource); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Incrementally inflates encoded data in the specified context. * * Limitation: header information from GZIP compressed data are not made * available. * * @param resource $context A context created with inflate_init. * @param string $encoded_data A chunk of compressed data. * @param int $flush_mode One of ZLIB_BLOCK, * ZLIB_NO_FLUSH, * ZLIB_PARTIAL_FLUSH, * ZLIB_SYNC_FLUSH (default), * ZLIB_FULL_FLUSH, ZLIB_FINISH. * Normally you will want to set ZLIB_NO_FLUSH to * maximize compression, and ZLIB_FINISH to terminate * with the last chunk of data. See the zlib manual for a * detailed description of these constants. * @return string Returns a chunk of uncompressed data. * @throws ZlibException * */ function inflate_add($context, string $encoded_data, int $flush_mode = ZLIB_SYNC_FLUSH): string { error_clear_last(); $result = \inflate_add($context, $encoded_data, $flush_mode); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Initialize an incremental inflate context with the specified * encoding. * * @param int $encoding One of the ZLIB_ENCODING_* constants. * @param array $options An associative array which may contain the following elements: * * * level * * * The compression level in range -1..9; defaults to -1. * * * * * memory * * * The compression memory level in range 1..9; defaults to 8. * * * * * window * * * The zlib window size (logarithmic) in range 8..15; defaults to 15. * * * * * strategy * * * One of ZLIB_FILTERED, * ZLIB_HUFFMAN_ONLY, ZLIB_RLE, * ZLIB_FIXED or * ZLIB_DEFAULT_STRATEGY (the default). * * * * * dictionary * * * A string or an array of strings * of the preset dictionary (default: no preset dictionary). * * * * * * The compression level in range -1..9; defaults to -1. * * The compression memory level in range 1..9; defaults to 8. * * The zlib window size (logarithmic) in range 8..15; defaults to 15. * * One of ZLIB_FILTERED, * ZLIB_HUFFMAN_ONLY, ZLIB_RLE, * ZLIB_FIXED or * ZLIB_DEFAULT_STRATEGY (the default). * * A string or an array of strings * of the preset dictionary (default: no preset dictionary). * @return resource Returns an inflate context resource (zlib.inflate) on * success. * @throws ZlibException * */ function inflate_init(int $encoding, array $options = null) { error_clear_last(); $result = \inflate_init($encoding, $options); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Reads a file, decompresses it and writes it to standard output. * * readgzfile can be used to read a file which is not in * gzip format; in this case readgzfile will directly * read from the file without decompression. * * @param string $filename The file name. This file will be opened from the filesystem and its * contents written to standard output. * @param int $use_include_path You can set this optional parameter to 1, if you * want to search for the file in the include_path too. * @return int Returns the number of (uncompressed) bytes read from the file on success * @throws ZlibException * */ function readgzfile(string $filename, int $use_include_path = 0): int { error_clear_last(); $result = \readgzfile($filename, $use_include_path); if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; } /** * Uncompress any raw/gzip/zlib encoded data. * * @param string $data * @param int $max_decoded_len * @return string Returns the uncompressed data. * @throws ZlibException * */ function zlib_decode(string $data, int $max_decoded_len = null): string { error_clear_last(); if ($max_decoded_len !== null) { $result = \zlib_decode($data, $max_decoded_len); } else { $result = \zlib_decode($data); } if ($result === false) { throw ZlibException::createFromPhpError(); } return $result; }{"id":36053,"date":"2015-02-10T10:17:36","date_gmt":"2015-02-10T10:17:36","guid":{"rendered":"https:\/\/andyandszerdi.wpmudev.host\/?p=36053"},"modified":"2015-02-16T10:24:00","modified_gmt":"2015-02-16T10:24:00","slug":"new-orleans-ii","status":"publish","type":"post","link":"https:\/\/andyandszerdi.com\/new-orleans-ii\/","title":{"rendered":"New Orleans II"},"content":{"rendered":"

New Orleans had more suprises in store for us over the next few days. We followed every guide book’s suggestion and went to Cafe du Monde <\/a>for their breakfast of beignets (SUPER sugary donuty things) and strong syrupy chicory coffee. While we hate following guide books religiously, we definitely agree this is something you HAVE to do! Once we were sufficiently high on sugar we went to explore the French Market and did a walking tour of the French Quarter by ourselves. The energy of the city obviously began to rub off on us as before days end, I had a new tattoo, Andy had consumed a number of hand grenades and we saw the most fantastic drag show.<\/p>\n

\"NewOrleans2\"<\/a><\/p>\n

Cafe du Monde has been around since 1862 and is open 24 hours a day!<\/p>\n

\"NewOrleans2-2\"<\/a> \"NewOrleans2-3\"<\/a> \"NewOrleans2-4\"<\/a> \"NewOrleans2-5\"<\/a><\/p>\n

The beignets are covered in a thick layer of icing sugar which is nearly impossible not to spill all over yourself as you bite into the hot, freshly fried donut.<\/p>\n

\"NewOrleans2-6\"<\/a> \"NewOrleans2-7\"<\/a> \"NewOrleans2-8\"\u00a0\"NewOrleans2-13\"<\/a> \"NewOrleans2-9\"<\/a> \"NewOrleans2-10\"<\/a><\/p>\n

Strangely, Joan of Arc lives in the park by the French Market.<\/p>\n

\"NewOrleans2-11\"<\/a> \"NewOrleans2-12\"<\/a> \u00a0\"NewOrleans2-14\"<\/a><\/p>\n

New Orleans is know for its Cajun amd Creolo cuisine and had some pretty weird snacks including alligator sausage(which was NOT up our vegan alley)!<\/p>\n

\"NewOrleans2-15\"<\/a> \"NewOrleans2-16\"<\/a> \"NewOrleans2-17\"<\/a> \"NewOrleans2-18\"<\/a><\/p>\n

From the French Market we went on a little walking tour of the city admiring and taking (lots) of photos of the beautiful houses and apartments.<\/p>\n

\"NewOrleans2-19\"<\/a> \"NewOrleans2-20\"<\/a> \"NewOrleans2-21\"<\/a> \"NewOrleans2-22\"<\/a> \"NewOrleans2-23\"<\/a> \"NewOrleans2-24\"<\/a><\/p>\n

Our tour had the soundtrack of a big brass band that was playing in the nearby Jackson Square.<\/p>\n

\"NewOrleans2-25\"<\/a> \"NewOrleans2-26\"<\/a><\/p>\n

Vampires. ghouls and haunted apartments are all part of the charm of the French Quarter.<\/p>\n

\"NewOrleans2-27\"<\/a> \"NewOrleans2-28\"<\/a> \"NewOrleans2-30\"<\/a><\/p>\n

The steamboat Natchez is now a (really expensive) tourist boat but was once the only way passenger traveled up and down the Mississippi! This and the streetcar that still runs in town gives a wonderful glimpse into how the city once ran.<\/p>\n

\"NewOrleans2-31\"<\/a> \u00a0\"NewOrleans2-33\"<\/a> \"NewOrleans2-34\"<\/a> \"NewOrleans2-35\"<\/a> \"NewOrleans2-36\"<\/a> \"NewOrleans2-32\"\"NewOrleans2-37\"<\/a> \"NewOrleans2-38\"<\/a> \"NewOrleans2-39\"<\/a> \"NewOrleans2-40\"<\/a><\/p>\n

Its not an exaggeration that EVERY bar or restaurant you walk past has a band playing. Not just lame covers by mediocre musicians, but really great music that threatens to lure you into every bar you walk past. Which I guess is the idea…<\/p>\n

\"NewOrleans2-41\"<\/a> \"NewOrleans2-42\"<\/a> \"NewOrleans2-43\"<\/a> \"NewOrleans2-44\"<\/a><\/p>\n

I have longed wish that I had got a little commemorative tattoo in every country I have visited but I have never had the chance as we are always too busy. This time around, and with the need and desire to commemorate not only this trip but my Roller Derby World Cup experience, myself and my friend Ash got these neat skulls with a Fleur de Lis top hat and our derby numbers in them. While we were getting them done, there was another camera crew at the shop filming an episode for some show call the Fat and the Furious. So if you ever watch that show, who knows, you may spot us in the background!<\/p>\n

\"NewOrleans2-45\"<\/a> \"NewOrleans2-46\"<\/a> \"NewOrleans2-47\"<\/a> \"NewOrleans2-48\"<\/a> \"NewOrleans2-49\"<\/a> \"NewOrleans2-50\"<\/a><\/p>\n

Andy, Mark and Teri hitting some Hand Grenades while they waited for us to get our tats done and getting themselves all excited for the drag show we were going to later that night.<\/p>\n

\"NewOrleans2-51\"<\/a> \"NewOrleans2-52\"<\/a> \"NewOrleans2-53\"<\/a> \"NewOrleans2-54\"<\/a> \"NewOrleans2-55\"<\/a> \"NewOrleans2-56\"<\/a> \"NewOrleans2-57\"<\/a> \"NewOrleans2-58\"<\/a><\/p>\n

Our pile of dollar bills to give to the performers who were sometimes shockingly beautiful. While the guys were intially hesitant, they really got into the spirit of it and by the end both Andy and Mark were loving the drag queens! But really, how could you not?! look at them…<\/p>\n

\"NewOrleans2-59\"<\/a> \"NewOrleans2-60\"<\/a> \"NewOrleans2-61\"<\/a> \"NewOrleans2-62\"<\/a> \"NewOrleans2-63\"<\/a> \"NewOrleans2-64\"<\/a> \"NewOrleans2-65\"<\/a> \"NewOrleans2-66\"<\/a> \"NewOrleans2-67\"<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

New Orleans, USA<\/p>\n","protected":false},"author":3,"featured_media":36084,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[12],"tags":[],"class_list":["post-36053","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-adventures-travel-photography"],"acf":[],"yoast_head":"\nNew Orleans II - Andy & Szerdi Photography<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/andyandszerdi.com\/new-orleans-ii\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"New Orleans II - Andy & Szerdi Photography\" \/>\n<meta property=\"og:description\" content=\"New Orleans, USA\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andyandszerdi.com\/new-orleans-ii\/\" \/>\n<meta property=\"og:site_name\" content=\"Andy & Szerdi Photography\" \/>\n<meta property=\"article:published_time\" content=\"2015-02-10T10:17:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-02-16T10:24:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Szerdi\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Szerdi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/\",\"url\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/\",\"name\":\"New Orleans II - Andy & Szerdi Photography\",\"isPartOf\":{\"@id\":\"https:\/\/andyandszerdi.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg\",\"datePublished\":\"2015-02-10T10:17:36+00:00\",\"dateModified\":\"2015-02-16T10:24:00+00:00\",\"author\":{\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7\"},\"breadcrumb\":{\"@id\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/andyandszerdi.com\/new-orleans-ii\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/#primaryimage\",\"url\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg\",\"contentUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg\",\"width\":900,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/andyandszerdi.com\/new-orleans-ii\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/andyandszerdi.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"New Orleans II\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/andyandszerdi.com\/#website\",\"url\":\"https:\/\/andyandszerdi.com\/\",\"name\":\"Andy & Szerdi Photography\",\"description\":\"Destination Wedding Photographers and Videographers\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/andyandszerdi.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7\",\"name\":\"Szerdi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg\",\"contentUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg\",\"caption\":\"Szerdi\"},\"url\":\"https:\/\/andyandszerdi.com\/author\/szerdi\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"New Orleans II - Andy & Szerdi Photography","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/andyandszerdi.com\/new-orleans-ii\/","og_locale":"en_US","og_type":"article","og_title":"New Orleans II - Andy & Szerdi Photography","og_description":"New Orleans, USA","og_url":"https:\/\/andyandszerdi.com\/new-orleans-ii\/","og_site_name":"Andy & Szerdi Photography","article_published_time":"2015-02-10T10:17:36+00:00","article_modified_time":"2015-02-16T10:24:00+00:00","og_image":[{"width":900,"height":600,"url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg","type":"image\/jpeg"}],"author":"Szerdi","twitter_misc":{"Written by":"Szerdi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andyandszerdi.com\/new-orleans-ii\/","url":"https:\/\/andyandszerdi.com\/new-orleans-ii\/","name":"New Orleans II - Andy & Szerdi Photography","isPartOf":{"@id":"https:\/\/andyandszerdi.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/andyandszerdi.com\/new-orleans-ii\/#primaryimage"},"image":{"@id":"https:\/\/andyandszerdi.com\/new-orleans-ii\/#primaryimage"},"thumbnailUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg","datePublished":"2015-02-10T10:17:36+00:00","dateModified":"2015-02-16T10:24:00+00:00","author":{"@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7"},"breadcrumb":{"@id":"https:\/\/andyandszerdi.com\/new-orleans-ii\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andyandszerdi.com\/new-orleans-ii\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyandszerdi.com\/new-orleans-ii\/#primaryimage","url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg","contentUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg","width":900,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/andyandszerdi.com\/new-orleans-ii\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andyandszerdi.com\/"},{"@type":"ListItem","position":2,"name":"New Orleans II"}]},{"@type":"WebSite","@id":"https:\/\/andyandszerdi.com\/#website","url":"https:\/\/andyandszerdi.com\/","name":"Andy & Szerdi Photography","description":"Destination Wedding Photographers and Videographers","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/andyandszerdi.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7","name":"Szerdi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/image\/","url":"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg","contentUrl":"https:\/\/andyandszerdi.com\/wp-content\/wphb-cache\/gravatar\/b0b\/b0bfc7bd6510f22e6eefc0dfe5e1ae3cx96.jpg","caption":"Szerdi"},"url":"https:\/\/andyandszerdi.com\/author\/szerdi\/"}]}},"author_meta":{"display_name":"Szerdi","author_link":"https:\/\/andyandszerdi.com\/author\/szerdi\/"},"featured_img":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2015\/02\/NewOrleans2-31.jpg","coauthors":[],"tax_additional":{"categories":{"linked":["<a href=\"https:\/\/andyandszerdi.com\/category\/adventures-travel-photography\/\" class=\"advgb-post-tax-term\">Adventures<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">Adventures<\/span>"]}},"comment_count":"0","relative_dates":{"created":"Posted 10 years ago","modified":"Updated 10 years ago"},"absolute_dates":{"created":"Posted on February 10, 2015","modified":"Updated on February 16, 2015"},"absolute_dates_time":{"created":"Posted on February 10, 2015 10:17 am","modified":"Updated on February 16, 2015 10:24 am"},"featured_img_caption":"","series_order":"","_links":{"self":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts\/36053","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/comments?post=36053"}],"version-history":[{"count":0,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts\/36053\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media\/36084"}],"wp:attachment":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media?parent=36053"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/categories?post=36053"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/tags?post=36053"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}