You Are Here: Home » Uncategorized
Add target=_blank to WordPress Author Profile Bio / Description in category
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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