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



wp_rel_nofollow_callback › WordPress Function

Seit2.3.0
Veraltet5.3.0
wp_rel_nofollow_callback ( $matches )
Parameter:
  • (array) $matches Single match.
    Erforderlich: Ja
Gibt zurück:
  • (string) HTML A Element with `rel="nofollow"`.
Definiert in:
Codex:

Callback to add `rel="nofollow"` string to HTML A element.



Quellcode

function wp_rel_nofollow_callback( $matches ) {
	return wp_rel_callback( $matches, 'nofollow' );
}