wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



popuplinks › WordPress Function

Od0.71
Przestarzały4.5.0
popuplinks ( $text )
Parametry:
  • (string) $text Content to replace links to open in a new tab.
    Wymagane: Tak
Powrót:
  • (string) Content that has filtered links.
Zdefiniowane na:
Codex:

Adds element attributes to open links in new tabs.



Źródło

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