wp_rel_nofollow_callback()
Deprecated since 5.3.0. It is no longer supported and may be removed in future releases. Use wp_rel_callback() instead.
Callback to add rel="nofollow" string to HTML A element.
No Hooks.
Returns
String. HTML A Element with rel="nofollow".
Usage
wp_rel_nofollow_callback( $matches );
- $matches(array) (required)
- Single match.
Changelog
| Since 2.3.0 | Introduced. |
| Deprecated since 5.3.0 | Use wp_rel_callback() |
wp_rel_nofollow_callback() wp rel nofollow callback code WP 6.9
function wp_rel_nofollow_callback( $matches ) {
return wp_rel_callback( $matches, 'nofollow' );
}