#w>populated_childrentX@@p@P@Xχ@P@AllowDynamicProperties Sߌ"wp_get_sidebars_widgetslink_descriptione8LJhas_seen_context_nodejquery-ui-draggablees궕~wp_style_loader_srcā[Yٺget_feed_build_datesrʃewp_insert_commentwAa}get_the_author_msnljquery-ui-slidertaressanitize_text_fieldaQ MKtPeacS +the_content_feedretibi@D@ @`#@x@#@C@nC3is_plugin_installeddP@F@@@WXU@term_taxonomy_idsn@`@Ԍ@ߌ@@@}dqkwp_reschedule_event:X+ print_head_scriptsemCAa}get_the_author_aim̚Q[_get_admin_bar_prefeTUJ6allowdynamicpropertieslink_descriptionreook mKcomments_popup_linkYgxw'}has_element_in_scopeTmeӎmwp_resolve_post_date caNswp_kses_attr_parse>'MOshow_description!xwp_get_ready_cron_jobswp_unique_post_slugLcomment_statusest_slug/wHgenerate_rewrite_ruleG۽(S/jterm_taxonomy_ideditor @ Ї@H@q@p@@/@/@/@jquery-ui-buttonsntM&y|cwp_get_comment_statusduZ +5wp_kses_check_attr_val(9cwp_kses_bad_protocolH@@x=@@H@ @ Ї@@P@͌@`@p@>U2wp_kses_hair_parse~get_comment_reply_link-)h:2ZYt_truncate_post_slugywp_add_post_tagsWrequest_multiplesntsj-ˀwp_set_post_tagslz5.user_can_delete_postt rVGwp_set_post_termsWgwp_unspam_commentsJkwp_set_post_categoriesK[*links_popup_scriptlsdpU@H@@(@HU@ȡ@@D@H@`Ɍ@@ @H@Rcomment_reply_linkusvEwp_after_insert_postf]41wp-block-libraryoriesnbxR,get_post_reply_link&9rVwp-block-library-theme(_Owp_unschedule_eventg~qtrackback_url_listW8ܴget_all_page_idsՒ@-Ңget_page_by_path`Ì@xN@0@0Տ@;@(;@!?get_comment_excerpt0χ@ Ї@X@w@H@xx@s wp_get_post_catsnk (F@p2@pz@1@hג@F@gget_page_childreng_!get_page_hierarchy`Yewp_kses_stripslashes",?_page_traverse_name8bfwp-list-reusable-blocksTUJ6allowdynamicpropertiesW\ get_category_rss_link&]'Qwp-block-directoryntiv$ˀwp_set_post_catsaheKy}AZwp-customize-widgetssa8|aget_comment_id_fields-% #wp_kses_array_lcreodul*@wp_untrash_commentool ě|rwp-format-libraryonucPv_mmended to be used for sensitive pages. * * Typical usage is as a {@see 'wp_robots'} callback: * * add_filter( 'wp_robots', 'wp_robots_sensitive_page' ); * * @since 5.7.0 * * @param array $robots Associative array of robots directives. * @return array Filtered robots directives. */ function wp_robots_sensitive_page( array $robots ) { $robots['noindex'] = true; $robots['noarchive'] = true; return $robots; } /** * Adds `max-image-preview:large` to the robots meta tag. * * This directive tells web robots that large image previews are allowed to be * displayed, e.g. in search engines, unless the blog is marked as not being public. * * Typical usage is as a {@see 'wp_robots'} callback: * * add_filter( 'wp_robots', 'wp_robots_max_image_preview_large' ); * * @since 5.7.0 * * @param array $robots Associative array of robots directives. * @return array Filtered robots directives. */ function wp_robots_max_image_preview_large( array $robots ) { if ( get_option( 'blog_public' ) ) { $robots['max-image-preview'] = 'large'; } return $robots; }