You appear to be a bot. Output may be restricted
Description
Add rel="nofollow"
attribute and value to links within string passed in.
Usage
$string = genesis_rel_nofollow( $text );
Parameters
- $text
- ( string ) required – HTML markup.
Returns
string Amended HTML markup with rel="nofollow"
attribute.
Source
File name: genesis/lib/functions/formatting.php
Lines:
1 to 6 of 6
function genesis_rel_nofollow( $text ) { $text = genesis_strip_attr( $text, 'a', 'rel' ); return stripslashes( wp_rel_nofollow( $text ) ); }