wpseek.com
A WordPress-centric search engine for devs and theme authors



links_add_target › WordPress Function

Since2.7.0
Deprecatedn/a
links_add_target ( $content, $target = '_blank', $tags = array('a') )
Parameters: (3)
  • (string) $content String to search for links in.
    Required: Yes
  • (string) $target The target to add to the links.
    Required: No
    Default: '_blank'
  • (string[]) $tags An array of tags to apply to.
    Required: No
    Default: array('a')
Returns:
  • (string) The processed content.
Defined at:
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.


Source

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 );
}