wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_rel_nofollow_callback › WordPress Function

Since2.3.0
Deprecated5.3.0
wp_rel_nofollow_callback ( $matches )
Parameters:
  • (array) $matches Single match.
    Required: Yes
Returns:
  • (string) HTML A Element with `rel="nofollow"`.
Defined at:
Codex:

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



Source

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