���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC helpers->post_type->get_accessible_post_types(); } /** * Returns whether the passed post type is considered accessible. * * @param string $post_type The post type to check. * * @return bool Whether or not the post type is considered accessible. */ public static function is_post_type_accessible( $post_type ) { return in_array( $post_type, self::get_accessible_post_types(), true ); } /** * Checks if the request post type is public and indexable. * * @param string $post_type_name The name of the post type to lookup. * * @return bool True when post type is set to index. */ public static function is_post_type_indexable( $post_type_name ) { return YoastSEO()->helpers->post_type->is_indexable( $post_type_name ); } /** * Filters the attachment post type from an array with post_types. * * @param array $post_types The array to filter the attachment post type from. * * @return array The filtered array. */ public static function filter_attachment_post_type( array $post_types ) { unset( $post_types['attachment'] ); return $post_types; } /** * Checks if the post type is enabled in the REST API. * * @param string $post_type The post type to check. * * @return bool Whether or not the post type is available in the REST API. */ public static function is_rest_enabled( $post_type ) { $post_type_object = get_post_type_object( $post_type ); if ( $post_type_object === null ) { return false; } return $post_type_object->show_in_rest === true; } /** * Checks if the current post type has an archive. * * Context: The has_archive value can be a string or a boolean. In most case it will be a boolean, * but it can be defined as a string. When it is a string the archive_slug will be overwritten to * define another endpoint. * * @param WP_Post_Type $post_type The post type object. * * @return bool True whether the post type has an archive. */ public static function has_archive( $post_type ) { return YoastSEO()->helpers->post_type->has_archive( $post_type ); } /** * Checks if the Yoast Metabox has been enabled for the post type. * * @param string $post_type The post type name. * * @return bool True whether the metabox is enabled. */ public static function has_metabox_enabled( $post_type ) { return WPSEO_Options::get( 'display-metabox-pt-' . $post_type, false ); } /* ********************* DEPRECATED METHODS ********************* */ /** * Removes the notification related to the post types which have been made public. * * @deprecated 20.10 * @codeCoverageIgnore * * @return void */ public static function remove_post_types_made_public_notification() { _deprecated_function( __METHOD__, 'Yoast SEO 20.10', 'Content_Type_Visibility_Dismiss_Notifications::dismiss_notifications' ); $notification_center = Yoast_Notification_Center::get(); $notification_center->remove_notification_by_id( 'post-types-made-public' ); } /** * Removes the notification related to the taxonomies which have been made public. * * @deprecated 20.10 * @codeCoverageIgnore * * @return void */ public static function remove_taxonomies_made_public_notification() { _deprecated_function( __METHOD__, 'Yoast SEO 20.10', 'Content_Type_Visibility_Dismiss_Notifications::dismiss_notifications' ); $notification_center = Yoast_Notification_Center::get(); $notification_center->remove_notification_by_id( 'taxonomies-made-public' ); } }