Advertisement
phpface

Untitled

Feb 23rd, 2021
1,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function videotube_show_video_author(){
  2.     printf(
  3.         '<div class="author-name"><a class="meta" href="%s">%s</a></div>',
  4.         esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
  5.         get_the_author_meta( 'display_name' )
  6.     );
  7. }
  8. add_action( 'videotube_video_meta', 'videotube_show_video_author' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement