wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_robots_noindex_embeds › WordPress Function

Seit5.7.0
Veraltetn/v
wp_robots_noindex_embeds ( $robots )
Parameter:
  • (array) $robots Associative array of robots directives.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (array) Filtered robots directives.
Definiert in:
Codex:

Adds `noindex` to the robots meta tag for embeds.

Typical usage is as a {@see 'wp_robots'} callback: add_filter( 'wp_robots', 'wp_robots_noindex_embeds' );


Quellcode

function wp_robots_noindex_embeds( array $robots ) {
	if ( is_embed() ) {
		return wp_robots_no_robots( $robots );
	}

	return $robots;
}