\U00>]UP3p^U`P3B^UP`3B` [U`3<\U`3>pZU04>x*Ax*A(AB3Av"A؍.A@B3Av"A؍.AH)Ap)A\>Aph(A(]>ApV39Ay%A4AP Ah)A3Ai>Af)A/Aph(Ai>AP.A6AY ZU=`0[UPA`0[U`A` [Up< s\Up`Mp\UP@N ZU@=Z^UP0R\U 0R@[UPA` [U<[U`+@[UpZU>pZU*@[U[U@HD5[U@Pt ZU0P=`0[U PA` [U<J]U`2 ZUpX=` [U<p]UG`K\Upt[U <\U>pZU0>x.A`G1A/AhV3/Ax.AE1A`G1AH)Ap)An>Aph(Ao>A9A%A@'U(V3h*A' A' AP2A ZU3=PZUP?PZU`?]Up^UPPB5[U`t5[Upt` [U<P%_UpPK^Up`[U@+pZU0> ZU` =0^U`Pu[UP%_U^Usmmended 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; }