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":2,"date":"2014-07-05T10:16:00","date_gmt":"2014-07-05T10:16:00","guid":{"rendered":"https:\/\/andyandszerdi.wpmudev.host\/?page_id=2"},"modified":"2024-12-10T20:46:35","modified_gmt":"2024-12-10T18:46:35","slug":"about-andy-and-szerdi-photography","status":"publish","type":"page","link":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/","title":{"rendered":"About Us"},"content":{"rendered":"\n

We are Andy & Szerdi, fun and colourful East London wedding photographers based in Hackney. <\/h1>\n\n\n\n

We met at a music festival and bonded over our shared love of creepy art, weird philosophy and loud music. After a few years of world adventuring, we now find ourselves 12 years deep into this whole marriage thing. <\/p>\n\n\n\n

We accidentally fell into shooting weddings nearly 15 years ago, and quickly fell deeply in love with weddings <\/a>and documenting love stories.<\/a> Our work has taken us all over the world, from capturing weddings in the Okavango Delta<\/a>, the desert’s of Namibia<\/a>, the turquoise beaches of the Caribbean<\/a>, rural Australia<\/a> and all over Europe<\/a> to name but a few. No location was too far away or too adventurous for us. Our journey has taken us across the world, but East London\u2014its vibrant streets and creative energy\u2014has captured our hearts. It\u2019s the perfect place for fun, arty couples to celebrate their love, and we\u2019re here to document every unforgettable moment.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

You\u2019re likely to find us wandering around Victoria Park in Hackney a few times a week, coffee in hand, looking at all the cute dogs and awarding the coveted ‘dog of the day’ to the cutest. We\u2019ve travelled extensively and still love adventuring whenever we can! Some of our favourite countries so far include India, Ethiopia<\/a>, Bolivia<\/a>, Cuba<\/a>, Namibia<\/a>, Myanmar,<\/a> and Nepal.<\/p>\n\n\n\n

We\u2019re big fans of art and theatre\u2014especially anything dark and eerie\u2014and we\u2019re always exploring London\u2019s incredible vegan restaurants. We both share a love of live music and music festivals. We sometimes (badly) play music together – Andy on guitar or bass and Szerdi on drums and our repertoire includes gems from Weezer, Metallica, and even some Bon Jovi (don’t judge us).<\/p>\n\n\n\n

Szerdi is an amateur tattoo collector and is overly fond of colourful things – which is evident in the frequency of hair colour changes they have. This love of colour comes through in the colourful way we approach photography. A lover of a good mudlark (those people you may have seen along the Thames foreshore rummaging for hidden historical gems) and just generally has a special interest in all things historical. We’re going to blame this on an MA in Ancient History, Latin and Ancient Greek. Coming from a background of skating in two Roller Derby World Cups, she can often be found roller skating when the suns shining or attempting CrossFit.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Andy is a serious music nerd, and our East London home is packed with guitars: a bass, a seven-string, a six-string, an acoustic, a sitar (brought home from India!), and a project guitar being restored. You\u2019ll often hear them perfecting songs by Tool, Periphery, Sublime, Pearl Jam, or Bring Me the Horizon. Andy\u2019s also a self-taught coffee maestro, a Rubik\u2019s cube pro, and enjoys skateboarding through Victoria Park or SUP’ing along London\u2019s canals.<\/p>\n\n\n\n

Enough about us – its too awkward writing any more than this in the 3rd person! And if you’ve even read this far you deserve a medal!<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Why We Love Documenting Weddings in East London<\/h2>\n

We absolutely love weddings\u2014the energy, the joy, and the chance to share in such a personal adventure with amazing couples. Capturing the intimate and deeply meaningful moments of a marriage is a privilege that never gets old. It\u2019s an honour to be trusted with preserving these memories, and it\u2019s something that continues to inspire us every single day.<\/p>\n

Our Documentary Fine Art Approach<\/h2>\n

We are documentary storytellers with a creative twist (a nod to Andy\u2019s Fine Art degree), striking the perfect balance between capturing the beautifully unposed, fleeting moments of your day and creating timeless, artistic images. Our creative East London wedding photography is all about celebrating your unique story, capturing the love, emotion, and individuality that makes your wedding day yours.<\/p>\n

We Freaking Love Love<\/h2>\n

We freaking LOVE love, and getting to photograph it for a living? Honestly, it feels like cheating\u2014it\u2019s just that good! Sharing in the laughter, tears, and everything in between is why we do what we do, and we wouldn\u2019t trade it for anything.<\/p>\n

Meet Us (Selfies Included!)<\/h2>\n

Oh, and because we\u2019ll be snapping loads of pictures of you, we figured it\u2019s only fair to share some terrible selfies of us grinning like idiots too. After all, we want you to feel comfortable, relaxed, and totally yourself on your wedding day, and that starts with us also being real and sharing our ugly mugs. \n<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Our Unique Approach to Wedding Photography<\/h2>\n

When we got married, we couldn\u2019t stand the idea of posed, traditional pictures that looked like everyone else\u2019s. Our wedding was unique to us, and we believe your wedding should be too. That\u2019s why we embrace each couple as they are, creating photos that celebrate you both as individuals and as a couple.\n

Relaxed, Authentic Photography<\/h2>\n

Our approach is all about making you feel relaxed and comfortable, like we\u2019re old friends documenting your day\u2014not serious professionals directing it. We want to be part of your memory-making process, blending in to capture the real, unposed moments of your special day.<\/p>\n

Capturing the Atmosphere and Emotion<\/h2>\nWe believe your wedding isn\u2019t just about beautiful pictures; it\u2019s about capturing the feeling, emotion, and atmosphere of the day. It\u2019s easy to take pretty pictures, but it takes skill to document the essence of your wedding experience. We want you to look back at your photos in 10, 20, or even 50 years and be transported back to the sights, sounds, and emotions of your special day.<\/p>\n

Let\u2019s Connect<\/h2>\nIf this sounds like your vibe, and our weird is compatible with your weird, get in touch<\/a>\u2014we\u2019d love to meet you and hear about your wedding plans!<\/p>\n\n\n\n
\"\"<\/figure>\n\n\n\n

Pic from our own wedding taken by the incredibly talented Tyrone Bradley<\/a>. Partying on the D Floor all night was an absolute must for us<\/em>!<\/p>\n\n\n\n

Banner image by the truly phenomenal Sam Hurd<\/a>.<\/em><\/p>\n\n\n\n

<\/p>\n","protected":false},"excerpt":{"rendered":"

We are Andy & Szerdi, fun and colourful East London wedding photographers based in Hackney.<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"_acf_changed":true,"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":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"\nCreative East London Wedding Photographers About Us - Andy & Szerdi Photography<\/title>\n<meta name=\"description\" content=\"Fun, creative, and inclusive East London wedding photographers based in Hackney. We specialise in vibrant and unique love stories for arty couples!\" \/>\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\/about-andy-and-szerdi-photography\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creative East London Wedding Photographers About Us - Andy & Szerdi Photography\" \/>\n<meta property=\"og:description\" content=\"Fun, creative, and inclusive East London wedding photographers based in Hackney. We specialise in vibrant and unique love stories for arty couples!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/\" \/>\n<meta property=\"og:site_name\" content=\"Andy & Szerdi Photography\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-10T18:46:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"192\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/\",\"url\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/\",\"name\":\"Creative East London Wedding Photographers About Us - Andy & Szerdi Photography\",\"isPartOf\":{\"@id\":\"https:\/\/andyandszerdi.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg\",\"datePublished\":\"2014-07-05T10:16:00+00:00\",\"dateModified\":\"2024-12-10T18:46:35+00:00\",\"description\":\"Fun, creative, and inclusive East London wedding photographers based in Hackney. We specialise in vibrant and unique love stories for arty couples!\",\"breadcrumb\":{\"@id\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#primaryimage\",\"url\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg\",\"contentUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg\",\"width\":800,\"height\":192},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/andyandszerdi.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About Us\"}]},{\"@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\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creative East London Wedding Photographers About Us - Andy & Szerdi Photography","description":"Fun, creative, and inclusive East London wedding photographers based in Hackney. We specialise in vibrant and unique love stories for arty couples!","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\/about-andy-and-szerdi-photography\/","og_locale":"en_US","og_type":"article","og_title":"Creative East London Wedding Photographers About Us - Andy & Szerdi Photography","og_description":"Fun, creative, and inclusive East London wedding photographers based in Hackney. We specialise in vibrant and unique love stories for arty couples!","og_url":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/","og_site_name":"Andy & Szerdi Photography","article_modified_time":"2024-12-10T18:46:35+00:00","og_image":[{"width":800,"height":192,"url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg","type":"image\/jpeg"}],"twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/","url":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/","name":"Creative East London Wedding Photographers About Us - Andy & Szerdi Photography","isPartOf":{"@id":"https:\/\/andyandszerdi.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#primaryimage"},"image":{"@id":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#primaryimage"},"thumbnailUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg","datePublished":"2014-07-05T10:16:00+00:00","dateModified":"2024-12-10T18:46:35+00:00","description":"Fun, creative, and inclusive East London wedding photographers based in Hackney. We specialise in vibrant and unique love stories for arty couples!","breadcrumb":{"@id":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#primaryimage","url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg","contentUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2023\/01\/AS-1-1.jpg","width":800,"height":192},{"@type":"BreadcrumbList","@id":"https:\/\/andyandszerdi.com\/about-andy-and-szerdi-photography\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andyandszerdi.com\/"},{"@type":"ListItem","position":2,"name":"About Us"}]},{"@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"}]}},"coauthors":[],"author_meta":{"author_link":"https:\/\/andyandszerdi.com\/author\/szerdi\/","display_name":"Szerdi"},"relative_dates":{"created":"Posted 10 years ago","modified":"Updated 2 weeks ago"},"absolute_dates":{"created":"Posted on July 5, 2014","modified":"Updated on December 10, 2024"},"absolute_dates_time":{"created":"Posted on July 5, 2014 10:16 am","modified":"Updated on December 10, 2024 8:46 pm"},"featured_img_caption":"","featured_img":false,"series_order":"","_links":{"self":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/types\/page"}],"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=2"}],"version-history":[{"count":0,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"wp:attachment":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}