wp_robots_no_robots() – Adds noindex to the robots meta tag.

You appear to be a bot. Output may be restricted

Description

Adds noindex to the robots meta tag.

This directive tells web robots not to index the page content. Typical usage is as a wp_robotswp_robots callback:

  • add_filter( 'wp_robots', 'wp_robots_no_robots' );

Usage

$array = wp_robots_no_robots( $robots );

Parameters

$robots
( array ) required – Associative array of robots directives.

Returns

array Filtered robots directives.

Source

File name: wordpress/wp-includes/robots-template.php
Lines:

1 to 11 of 11
function wp_robots_no_robots( array $robots ) {
  $robots['noindex'] = true;

  if ( get_option( 'blog_public' ) ) {
    $robots['follow'] = true;
  } else {
    $robots['nofollow'] = true;
  }

  return $robots;
}
 

 View on GitHub View on Trac