Advertisement
fauzanjeg

Redirect Author Link to Twitter

Aug 18th, 2021 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. /* Redirect Author Link to Twitter */
  2. function custom_author_link( $link, $id_author ) {
  3.     $link = get_the_author_meta( 'twitter', $id_author );
  4.     return $link;
  5. }
  6. add_filter( 'author_link', 'custom_author_link', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement