Docs: Adjust DocBlock formatting for wp_robots_*() and related functions.

This ensures the code blocks are displayed correctly in the WordPress Code Reference.

Follow-up to [19304], [37541], [44021], [49992].

See #54729.
Built from https://develop.svn.wordpress.org/trunk@53087


git-svn-id: http://core.svn.wordpress.org/trunk@52676 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-04-06 15:33:03 +00:00
parent a5f05b68a3
commit 8e4e8afe5d
4 changed files with 30 additions and 24 deletions

View File

@ -4125,11 +4125,10 @@ function addslashes_strings_only( $value ) {
} }
/** /**
* Displays a noindex meta tag if required by the blog configuration. * Displays a `noindex` meta tag if required by the blog configuration.
* *
* If a blog is marked as not being public then the noindex meta tag will be * If a blog is marked as not being public then the `noindex` meta tag will be
* output to tell web robots not to index the page content. Add this to the * output to tell web robots not to index the page content.
* {@see 'wp_head'} action.
* *
* Typical usage is as a {@see 'wp_head'} callback: * Typical usage is as a {@see 'wp_head'} callback:
* *
@ -4150,13 +4149,16 @@ function noindex() {
} }
/** /**
* Display a noindex meta tag. * Display a `noindex` meta tag.
* *
* Outputs a noindex meta tag that tells web robots not to index the page content. * Outputs a `noindex` meta tag that tells web robots not to index the page content.
* Typical usage is as a {@see 'wp_head'} callback. add_action( 'wp_head', 'wp_no_robots' ); *
* Typical usage is as a {@see 'wp_head'} callback:
*
* add_action( 'wp_head', 'wp_no_robots' );
* *
* @since 3.3.0 * @since 3.3.0
* @since 5.3.0 Echo "noindex,nofollow" if search engine visibility is discouraged. * @since 5.3.0 Echo `noindex,nofollow` if search engine visibility is discouraged.
* @deprecated 5.7.0 Use wp_robots_no_robots() instead on 'wp_robots' filter. * @deprecated 5.7.0 Use wp_robots_no_robots() instead on 'wp_robots' filter.
*/ */
function wp_no_robots() { function wp_no_robots() {
@ -4171,13 +4173,15 @@ function wp_no_robots() {
} }
/** /**
* Display a noindex,noarchive meta tag and referrer origin-when-cross-origin meta tag. * Display a `noindex,noarchive` meta tag and referrer `strict-origin-when-cross-origin` meta tag.
* *
* Outputs a noindex,noarchive meta tag that tells web robots not to index or cache the page content. * Outputs a `noindex,noarchive` meta tag that tells web robots not to index or cache the page content.
* Outputs a referrer origin-when-cross-origin meta tag that tells the browser not to send the full * Outputs a referrer `strict-origin-when-cross-origin` meta tag that tells the browser not to send
* url as a referrer to other sites when cross-origin assets are loaded. * the full URL as a referrer to other sites when cross-origin assets are loaded.
* *
* Typical usage is as a wp_head callback. add_action( 'wp_head', 'wp_sensitive_page_meta' ); * Typical usage is as a {@see 'wp_head'} callback:
*
* add_action( 'wp_head', 'wp_sensitive_page_meta' );
* *
* @since 5.0.1 * @since 5.0.1
* @deprecated 5.7.0 Use wp_robots_sensitive_page() instead on 'wp_robots' filter * @deprecated 5.7.0 Use wp_robots_sensitive_page() instead on 'wp_robots' filter

View File

@ -3224,12 +3224,14 @@ function wlwmanifest_link() {
} }
/** /**
* Displays a referrer strict-origin-when-cross-origin meta tag. * Displays a referrer `strict-origin-when-cross-origin` meta tag.
* *
* Outputs a referrer origin-when-cross-origin meta tag that tells the browser not to send the full * Outputs a referrer `strict-origin-when-cross-origin` meta tag that tells the browser not to send
* url as a referrer to other sites when cross-origin assets are loaded. * the full URL as a referrer to other sites when cross-origin assets are loaded.
* *
* Typical usage is as a wp_head callback. add_action( 'wp_head', 'wp_strict_cross_origin_referrer' ); * Typical usage is as a {@see 'wp_head'} callback:
*
* add_action( 'wp_head', 'wp_strict_cross_origin_referrer' );
* *
* @since 5.7.0 * @since 5.7.0
*/ */

View File

@ -50,7 +50,7 @@ function wp_robots() {
} }
/** /**
* Adds noindex to the robots meta tag if required by the site configuration. * Adds `noindex` to the robots meta tag if required by the site configuration.
* *
* If a blog is marked as not being public then noindex will be output to * If a blog is marked as not being public then noindex will be output to
* tell web robots not to index the page content. Add this to the * tell web robots not to index the page content. Add this to the
@ -76,7 +76,7 @@ function wp_robots_noindex( array $robots ) {
} }
/** /**
* Adds noindex to the robots meta tag for embeds. * Adds `noindex` to the robots meta tag for embeds.
* *
* Typical usage is as a {@see 'wp_robots'} callback: * Typical usage is as a {@see 'wp_robots'} callback:
* *
@ -98,7 +98,7 @@ function wp_robots_noindex_embeds( array $robots ) {
} }
/** /**
* Adds noindex to the robots meta tag if a search is being performed. * Adds `noindex` to the robots meta tag if a search is being performed.
* *
* If a search is being performed then noindex will be output to * If a search is being performed then noindex will be output to
* tell web robots not to index the page content. Add this to the * tell web robots not to index the page content. Add this to the
@ -124,7 +124,7 @@ function wp_robots_noindex_search( array $robots ) {
} }
/** /**
* Adds noindex to the robots meta tag. * Adds `noindex` to the robots meta tag.
* *
* This directive tells web robots not to index the page content. * This directive tells web robots not to index the page content.
* *
@ -150,7 +150,7 @@ function wp_robots_no_robots( array $robots ) {
} }
/** /**
* Adds noindex and noarchive to the robots meta tag. * Adds `noindex` and `noarchive` to the robots meta tag.
* *
* This directive tells web robots not to index or archive the page content and * This directive tells web robots not to index or archive the page content and
* is recommended to be used for sensitive pages. * is recommended to be used for sensitive pages.
@ -171,7 +171,7 @@ function wp_robots_sensitive_page( array $robots ) {
} }
/** /**
* Adds 'max-image-preview:large' to the robots meta tag. * Adds `max-image-preview:large` to the robots meta tag.
* *
* This directive tells web robots that large image previews are allowed to be * 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. * displayed, e.g. in search engines, unless the blog is marked as not being public.

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.0-alpha-53086'; $wp_version = '6.0-alpha-53087';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.