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



popuplinks › WordPress Function

Seit0.71
Veraltet4.5.0
popuplinks ( $text )
Parameter:
  • (string) $text Content to replace links to open in a new tab.
    Erforderlich: Ja
Gibt zurück:
  • (string) Content that has filtered links.
Definiert in:
Codex:

Adds element attributes to open links in new tabs.



Quellcode

function popuplinks( $text ) {
	_deprecated_function( __FUNCTION__, '4.5.0' );
	$text = preg_replace('/<a (.+?)>/i', "<a $1 target='_blank' rel='external'>", $text);
	return $text;
}