wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_rel_nofollow › WordPress Function

Seit1.5.0
Veraltetn/v
wp_rel_nofollow ( $text )
Parameter:
  • (string) $text Content that may contain HTML A elements.
    Erforderlich: Ja
Gibt zurück:
  • (string) Converted content.
Definiert in:
Codex:

Adds `rel="nofollow"` string to all HTML A elements in content.



Quellcode

function wp_rel_nofollow( $text ) {
	// This is a pre-save filter, so text is already escaped.
	$text = stripslashes( $text );
	$text = preg_replace_callback(
		'|<a (.+?)>|i',
		static function ( $matches ) {
			return wp_rel_callback( $matches, 'nofollow' );
		},
		$text
	);
	return wp_slash( $text );
}