You Are Here: Home » Uncategorized

Add target=_blank to WordPress Author Profile Bio / Description in category

By Debjit on November 11th, 2017 
Advertisement

Looks like there is a bug in WP core that leads to target="_blank" being stripped from Author or user Profile Bio and Category Description. Here is the link to this bug: https://core.trac.wordpress.org/ticket/12056

In order to fix this, you need to add the following piece of code to your theme's functions.php file:

// http://digitizor.com/add-target-blank-author-wp/
add_filter( 'get_the_author_description', 'amtf_target_blank_author_desc' );
/**
* Add target _blank to links in author description
* Drop-in fix (workaround) for: https://core.trac.wordpress.org/ticket/12056
*/
function amtf_target_blank_author_desc( $desc ) {
return str_replace( '<a', '<a target="_blank" ', $desc );
}

Advertisement







Add target=_blank to WordPress Author Profile Bio / Description in category was originally published on Digitizor.com on November 11, 2017 - 11:36 am (Indian Standard Time)