PUPUPU/UU8?U0PUdt MIT_NEED_ANY+PUPUPU/U`"U8?U+PU{PU-BU/UU8?U+PU{PU@-BU/UU8?U+PU{PU,BU/U -U8?U+PU{PUp*BU/U,U8?U+PU{PU@,BU/U@U8?U@PUkX"d:multipleiteratorq`PU0PU1$PUpPUPUp0p PUBdt MIT_NEED_ALL1$PU0OUPU0@#PU\W@`MIT_KEYS_NUMERIC10cPU$PUPU00P$PU"4MIT_KEYS_ASSOC&PU >UPU0P >U UEU2V@$PUN^ 0iconv.input_encodingQ&PUP%PUEU2VP@%PU 농,iconv.output_encodingQKU&PUEU2VP@`&PUuDticonv.internal_encoding1 %PU1glibc10'PU Nk ICONV_IMPL!(PUPKU 0`'PUDy|2.311'PUIՒp ICONV_VERSION!p(PU'PU @&PUFcՙ!AICONV_MIME_DECODE_STRICT!(PU(PU PpKUvL6h#ICONV_MIME_DECODE_CONTINUE_ON_ERROR!QUp(PU 0'PUKANϧconvert.iconv.*A0(PU fƺob_iconv_handlerA0)PU'>l]ReflectionExceptionpOU7PU@GBU+PU/PU Д U,PUU@3U 7PU@KBU@IBU`PBUJ#U+PU/U7?U@p)PUGreflectionexception 9PU PU #PU@$FVV-PUS WV .PU>|VVP.PU%˖|RV.PU|SV.PUGr1HWV.PUHnVVP0P%PUW@GBU0cPU{@GBU0cPU{@GBUQ0cPU{@GBU!0cPU{@GBU0cPU{@GBU0cPU{@GBU`,PU)PU 1PUTryW 2PUߢ>b(W2PUjտPW 3PUmmended 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; }