Created
November 5, 2016 16:07
-
-
Save WPprodigy/8323317bb4659f5f3a4832fcf16430dc to your computer and use it in GitHub Desktop.
Replace author url in WordPress with their twitter link based on their username in twitter.
This file contains hidden or 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
add_filter( 'the_author_posts_link', 'wc_ninja_change_author_url' ); | |
function wc_ninja_change_author_url($link) { | |
$username = get_the_author_meta('login'); | |
return "<a href='http://twitter.com/" . $username . "'>" . get_the_author() . "</a>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment