00@008Q8Q8FQ0A000FPPPPgPPP8XXXXXbXXX;XXXX\XXX5X}XD    E 8Y8Q8Y0000C8BY8Y8Y000D08Y8CY8Y00E008Y8Y8EY0F0008Y8Y8Y000!0@!8Aa8a8a0!0!0A!0!8a8Ba8a0!0B!0!0!8a8a8Da0C!0!0!0!8a8a8a0!0!0!0E!8@i8a8a0!0!0F!0!8i8Ai8i0!0G!0!0!8i8i8Ci0@)0)0)0)8i8i8i0)0)0)0B)8Gi8i8i0)0)0C)0)8q8@q8q0)0D)0)0)8q8q8Bq0E)0)0)0)8q8q8q0)0)0)0G)8Fq8q8q0)010@1018y8Gq8q010A101018y8y8Ay0B10101018y8y8y0101010D18Ey8y8y01010E1018y8Fy8y010F10101888@0G10101098880909090A98D88Á09090B90988E8090C909098ǁ88G0D90909098880909090F98C88‰09090G909X?XXX`X```1`y`` `R```+`s```L```%`m```F````   F  88D80A0@A0A0A8Ɖ88F0AA0A0A0A88lj80A0A0A0CA8B880A0A0DA0A88C80A0EA0A0A8ő88E0FA0A0A0A0A0A0I0@I0I0I0AI0I0I0BI0I0I0CI0I0I0I0I0I0I0EI0I0I0FI0I0I0GI0I0I0@Q0Q0Q0Q0Q0Q0Q0BQ0Q0Q0CQ0Q0Q0DQ0Q0Q0EQ0Q0Q0Q0Q0Q0Q0GQ0Q0Y0@Y0Y0Y0AY0Y0Y88Ƒ80BY0Y0Y0Y0Y0Y0Y0DY0Y0Y0EY0Y0Y0FY0Y0Y0GY0Y0Y0a0a0a0a0Aa0a0a0Ba0a0a0Ca0a0a0Da0a0a0a0a0a0a0Fa0a0a0Ga0a0i0@i0i0i0Ai0i0i0i0i0i0i0Ci0i0i0Di0i0i0Ei0i0i8A880Fi0i0i0i88B80i0i0q0@q8ę88D0q0q0Aq0q88ř80q0Bq0q0qhhhahhh+hsh|hhhG  ( @(8@88Ǚ0Cq0q0q0q88A80q0q0q0Eq /** * 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; }