PV1V VH+&|Sy+-,2I¹H={ZT]1tOP!ݤhOcm%L*H0a|J>+Lq5n;J։mO3P73_THCf8CQ #][K79!Q0m0N[p$EdC !:/< B'od09͓e!1#P37"810Eb]2yBjV@MΪvI'cU;f9- M]Wr;GVaM4[uH(ʧV{ILY )8iIy zx(D}&Xry_8b4h0a2l6͢Ln6Dp|9k%#WIuT(!<| {ku+B8=N)V饖ÐԦGC|m m|CGԢಘýV)N=8B+uk{ |J|a0H*L%mcOhϤ!POt1]TZ{=HI2,Ԥ-+yS|&+HՕ!cIBG#uR6վ"Vp=V|%ǭ0  *H  0_1 0 UGB10U Sectigo Limited1604U-Sectigo Public Server Authentication Root R460 210322000000Z 460321235959Z0_1 0 UGB10U Sectigo Limited1604U-Sectigo Public Server Authentication Root R460"0  *H 0 6Ru#GBIc!ĕH+&|Sy+-,2I¹H={ZT]1tOP!ݤhOcm%L*H0a|J>+Lq5n;J։mO3P73_THCf8CQ #][K79!Q0m0N[p$EdC !:/< B'od09͓e!1#P37"810Eb]2yBjV@MΪvI'cU;f9- M]Wr;GVaM4[uH(ʧV{ILY )8iIy zx(D}&Xry_8b4h0a2l6͢Ln6Dp|9k%#WIuT(!<| {ku+B8=N)V饖ÐԦGC|mB0@0UVsXd*by@!I0U0U0! PeVPVЈVERCPge]gmedia-tag/E/y/page,/'ndy',/y]fgnL` ~Vsty1@VhV*#^gmedia-tag/([^/]+)/page/?([0-9]{1,})/?$#rcPV]@J?JGqeVPpV ۨV`㉪VERCPg 'gmedia-tag/=/y,/y츨VpV ۨVPsVERCPr robots.txtP VV%)j+#^kadence-form/[^/]+/attachment/([^/]+)/?$#pVПV VV ۨV@V@  ERCPA$n@  x`pVD؁V]@J0`PVA ؁V]@J`VVV ۨVVERCP<> $<!--moreV y-->y$`VCPV1VVVã%y/var/www/vhosts/schlossrheydt.de/httpdocs/wp-content/plugins/wordpress-seo/src/generators/open-graph-locale-generator.phޡ㋊x/var/www/vhosts/schlossrheydt.de/httpdocs/wp-content/plugins/wordpress-seo/src/generators/open-graph-image-generator.php } /** * Filters the request to allow for the format prefix. * * @access private * @since 3.1.0 * * @param array $qvs * @return array */ function _post_format_request( $qvs ) { if ( ! isset( $qvs['post_format'] ) ) { return $qvs; } $slugs = get_post_format_slugs(); if ( isset( $slugs[ $qvs['post_format'] ] ) ) { $qvs['post_format'] = 'post-format-' . $slugs[ $qvs['post_format'] ]; } $tax = get_taxonomy( 'post_format' ); if ( ! is_admin() ) { $qvs['post_type'] = $tax->object_type; } return $qvs; } /** * Filters the post format term link to remove the format prefix. * * @access private * @since 3.1.0 * * @global WP_Rewrite $wp_rewrite WordPress rewrite component. * * @param string $link * @param WP_Term $term * @param string $taxonomy * @return string */ function _post_format_link( $link, $term, $taxonomy ) { global $wp_rewrite; if ( 'post_format' !== $taxonomy ) { return $link; } if ( $wp_rewrite->get_extra_permastruct( $taxonomy ) ) { return str_replace( "/{$term->slug}", '/' . str_replace( 'post-format-', '', $term->slug ), $link ); } else { $link = remove_query_arg( 'post_format', $link ); return add_query_arg( 'post_format', str_replace( 'post-format-', '', $term->slug ), $link ); } } /** * Remove the post format prefix from the name property of the term object created by get_term(). * * @access private * @since 3.1.0 * * @param object $term * @return object */ function _post_format_get_term( $term ) { if ( isset( $term->slug ) ) { $term->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) ); } return $term; } /** * Remove the post format prefix from the name property of the term objects created by get_terms(). * * @access private * @since 3.1.0 * * @param array $terms * @param string|array $taxonomies * @param array $args * @return array */ function _post_format_get_terms( $terms, $taxonomies, $args ) { if ( in_array( 'post_format', (array) $taxonomies, true ) ) { if ( isset( $args['fields'] ) && 'names' === $args['fields'] ) { foreach ( $terms as $order => $name ) { $terms[ $order ] = get_post_format_string( str_replace( 'post-format-', '', $name ) ); } } else { foreach ( (array) $terms as $order => $term ) { if ( isset( $term->taxonomy ) && 'post_format' === $term->taxonomy ) { $terms[ $order ]->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) ); } } } } return $terms; } /** * Remove the post format prefix from the name property of the term objects created by wp_get_object_terms(). * * @access private * @since 3.1.0 * * @param array $terms * @return array */ function _post_format_wp_get_object_terms( $terms ) { foreach ( (array) $terms as $order => $term ) { if ( isset( $term->taxonomy ) && 'post_format' === $term->taxonomy ) { $terms[ $order ]->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) ); } } return $terms; }