wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_rel_nofollow_callback › WordPress Function

Depuis2.3.0
Dépréciée5.3.0
wp_rel_nofollow_callback ( $matches )
Paramètres:
  • (array) $matches Single match.
    Requis: Oui
Retourne:
  • (string) HTML A Element with `rel="nofollow"`.
Défini(e) dans:
Codex:

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



Source

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