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



links_add_target › WordPress Function

Seit2.7.0
Veraltetn/v
links_add_target ( $content, $target = '_blank', $tags = array('a') )
Parameter: (3)
  • (string) $content String to search for links in.
    Erforderlich: Ja
  • (string) $target The target to add to the links.
    Erforderlich: Nein
    Standard: '_blank'
  • (string[]) $tags An array of tags to apply to.
    Erforderlich: Nein
    Standard: array('a')
Gibt zurück:
  • (string) The processed content.
Definiert in:
Codex:

Adds a target attribute to all links in passed content.

By default, this function only applies to <a> tags. However, this can be modified via the $tags parameter. NOTE: Any current target attribute will be stripped and replaced.


Quellcode

function links_add_target( $content, $target = '_blank', $tags = array( 'a' ) ) {
	global $_links_add_target;
	$_links_add_target = $target;
	$tags              = implode( '|', (array) $tags );
	return preg_replace_callback( "!<($tags)((\s[^>]*)?)>!i", '_links_add_target', $content );
}