wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



wp_rel_nofollow_callback › WordPress Function

Desde2.3.0
Obsoleto5.3.0
wp_rel_nofollow_callback ( $matches )
Parâmetros:
  • (array) $matches Single match.
    Required: Yes
Retorna:
  • (string) HTML A Element with `rel="nofollow"`.
Definido em:
Codex:

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



Fonte

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