Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Redirect Author Link to Twitter */
- function custom_author_link( $link, $id_author ) {
- $link = get_the_author_meta( 'twitter', $id_author );
- return $link;
- }
- add_filter( 'author_link', 'custom_author_link', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement