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":95272,"date":"2022-11-14T14:28:56","date_gmt":"2022-11-14T12:28:56","guid":{"rendered":"https:\/\/andyandszerdi.com\/?p=95272"},"modified":"2022-11-14T14:28:58","modified_gmt":"2022-11-14T12:28:58","slug":"town-hall-wedding_kingston-upon-thames","status":"publish","type":"post","link":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/","title":{"rendered":"Gina and Nick"},"content":{"rendered":"\n

Romantic Autumn wedding at Kingston upon Thames in London <\/strong><\/h1>\n\n\n\n

<\/h2>\n\n\n\n

Gina and Nick got married at the gorgeous Old Court House, in Kingston upon Thames. It was a super fun Autumn Town Hall wedding, with all their dearest people. Once the legal bits were done we all down headed to a Thameside pub and a magician and caricaturist kept guests entertained.<\/p>\n\n\n\n

The wedding<\/strong><\/h3>\n\n\n\n

The ceremony took place at a beautiful town hall. Everyone was just so happy to see these babes married, which was so lovely to witness. The ceremony included Nick’s nan as the guest of honour, and it was so special seeing how important she was to their day. It was a moving occasion, full of so much love.<\/p>\n\n\n\n

After the ceremony, everyone meandered down the Thames to the pub. We snuck in a few photos en route, which was so much fun, and we got some great pics in the magical Autumn light alongside the river. The weather at this Autumn Town Hall wedding was the perfect blend of chilly enough to want to cuddle, whilst still glorious and sunny, it was an absolute stunner of a day.<\/p>\n\n\n\n

The reception was held in The Bishop pub. This venue is\u00a0perfect for small weddings as its right on the Thames. So the views out were absolutely gorgeous,\u00a0and it\u2019s got such a cosy vibe, especially in the evenings when the golden sun is glowing over the river.<\/p>\n\n\n\n

For the reception, the couple had organised a magician and caricaturist for their guests, and everyone had the best time!<\/p>\n\n\n\n

Gina and Nick’s celebration was such a joy to be a part of. The way they centred Nick’s nan in the ceremony was so heart-warming to see. Their decision to have an informal reception at a gorgeous pub on the Thames was the most perfect end to a gorgeous day.<\/p>\n\n\n\n

<\/h3>\n\n\n\n

The amazing team<\/strong><\/h3>\n\n\n\n

Venue -The Guildhall \u2013 https:\/\/www.kingston.gov.uk\/ceremonies-1<\/a><\/p>\n\n\n\n

Pub – The Bishop \u2013 https:\/\/www.thebishopkingston.co.uk<\/a><\/p>\n\n\n\n

Decor- Array Wedding and Event \u2013 http:\/\/www.arrayweddingandeventhire.co.uk<\/a><\/p>\n\n\n\n

Florist- Hannah Martin \u2013 https:\/\/hannahmartin.net<\/a><\/p>\n\n\n\n

Cake- Whisked and Baked \u2013 https:\/\/www.instagram.com\/whisked_and_baked2021\/?hl=en<\/a><\/p>\n\n\n\n

Magician – Jack Monroe \u2013 https:\/\/www.alivenetwork.com\/bandpage.asp?bandname=Jake%20Monroe<\/a><\/p>\n\n\n\n

Caricaturist – Mengistu \u2013 https:\/\/www.etimarts.com<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

Kingston upon Thames<\/p>\n","protected":false},"author":3,"featured_media":95347,"comment_status":"open","ping_status":"closed","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":[1],"tags":[55,29,19],"class_list":["post-95272","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wedding-photography","tag-east-london-wedding","tag-london-wedding-photographer","tag-town-hall-wedding"],"acf":[],"yoast_head":"\nGina and Nick - Andy & Szerdi Photography<\/title>\n<meta name=\"description\" content=\"Gina and Nick had an intimate Town Hall wedding in Kingston upon Thames on a gorgeous Autumn's day, before heading to a nearby pub\" \/>\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\/town-hall-wedding_kingston-upon-thames\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gina and Nick - Andy & Szerdi Photography\" \/>\n<meta property=\"og:description\" content=\"Gina and Nick had an intimate Town Hall wedding in Kingston upon Thames on a gorgeous Autumn's day, before heading to a nearby pub\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/\" \/>\n<meta property=\"og:site_name\" content=\"Andy & Szerdi Photography\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-14T12:28:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-14T12:28:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1334\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/\",\"url\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/\",\"name\":\"Gina and Nick - Andy & Szerdi Photography\",\"isPartOf\":{\"@id\":\"https:\/\/andyandszerdi.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg\",\"datePublished\":\"2022-11-14T12:28:56+00:00\",\"dateModified\":\"2022-11-14T12:28:58+00:00\",\"author\":{\"@id\":\"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7\"},\"description\":\"Gina and Nick had an intimate Town Hall wedding in Kingston upon Thames on a gorgeous Autumn's day, before heading to a nearby pub\",\"breadcrumb\":{\"@id\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#primaryimage\",\"url\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg\",\"contentUrl\":\"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg\",\"width\":2000,\"height\":1334},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/andyandszerdi.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Gina and Nick\"}]},{\"@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":"Gina and Nick - Andy & Szerdi Photography","description":"Gina and Nick had an intimate Town Hall wedding in Kingston upon Thames on a gorgeous Autumn's day, before heading to a nearby pub","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\/town-hall-wedding_kingston-upon-thames\/","og_locale":"en_US","og_type":"article","og_title":"Gina and Nick - Andy & Szerdi Photography","og_description":"Gina and Nick had an intimate Town Hall wedding in Kingston upon Thames on a gorgeous Autumn's day, before heading to a nearby pub","og_url":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/","og_site_name":"Andy & Szerdi Photography","article_published_time":"2022-11-14T12:28:56+00:00","article_modified_time":"2022-11-14T12:28:58+00:00","og_image":[{"width":2000,"height":1334,"url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg","type":"image\/jpeg"}],"author":"Szerdi","twitter_misc":{"Written by":"Szerdi","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/","url":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/","name":"Gina and Nick - Andy & Szerdi Photography","isPartOf":{"@id":"https:\/\/andyandszerdi.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#primaryimage"},"image":{"@id":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#primaryimage"},"thumbnailUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg","datePublished":"2022-11-14T12:28:56+00:00","dateModified":"2022-11-14T12:28:58+00:00","author":{"@id":"https:\/\/andyandszerdi.com\/#\/schema\/person\/f31d25fe8040e0cc73f7bb5d40bd26a7"},"description":"Gina and Nick had an intimate Town Hall wedding in Kingston upon Thames on a gorgeous Autumn's day, before heading to a nearby pub","breadcrumb":{"@id":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#primaryimage","url":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg","contentUrl":"https:\/\/andyandszerdi.com\/wp-content\/uploads\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg","width":2000,"height":1334},{"@type":"BreadcrumbList","@id":"https:\/\/andyandszerdi.com\/town-hall-wedding_kingston-upon-thames\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andyandszerdi.com\/"},{"@type":"ListItem","position":2,"name":"Gina and Nick"}]},{"@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\/2022\/11\/Town-Hall-Wedding-Photographer-London-75.jpg","coauthors":[],"tax_additional":{"categories":{"linked":["<a href=\"https:\/\/andyandszerdi.com\/category\/wedding-photography\/\" class=\"advgb-post-tax-term\">Your epic wedding<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">Your epic wedding<\/span>"]},"tags":{"linked":["<a href=\"https:\/\/andyandszerdi.com\/category\/wedding-photography\/\" class=\"advgb-post-tax-term\">East London Wedding<\/a>","<a href=\"https:\/\/andyandszerdi.com\/category\/wedding-photography\/\" class=\"advgb-post-tax-term\">London Wedding Photographer<\/a>","<a href=\"https:\/\/andyandszerdi.com\/category\/wedding-photography\/\" class=\"advgb-post-tax-term\">Town Hall Wedding<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">East London Wedding<\/span>","<span class=\"advgb-post-tax-term\">London Wedding Photographer<\/span>","<span class=\"advgb-post-tax-term\">Town Hall Wedding<\/span>"]}},"comment_count":"0","relative_dates":{"created":"Posted 2 years ago","modified":"Updated 2 years ago"},"absolute_dates":{"created":"Posted on November 14, 2022","modified":"Updated on November 14, 2022"},"absolute_dates_time":{"created":"Posted on November 14, 2022 2:28 pm","modified":"Updated on November 14, 2022 2:28 pm"},"featured_img_caption":"","series_order":"","_links":{"self":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts\/95272","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=95272"}],"version-history":[{"count":0,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/posts\/95272\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media\/95347"}],"wp:attachment":[{"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/media?parent=95272"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/categories?post=95272"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/andyandszerdi.com\/wp-json\/wp\/v2\/tags?post=95272"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}