Skip to content

Instantly share code, notes, and snippets.

@WPprodigy
Created November 5, 2016 16:07
Show Gist options
  • Save WPprodigy/8323317bb4659f5f3a4832fcf16430dc to your computer and use it in GitHub Desktop.
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.
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