phpface

Untitled

Feb 24th, 2021 (edited)
1,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. function videotube_show_video_author(){
  2.  
  3.     if( is_author() ){
  4.         return;
  5.     }
  6.  
  7.     printf(
  8.         '<div class="author-name meta">%s<a class="meta text-primary" href="%s">%s %s</a></div>',
  9.         esc_html__( 'Posted by', 'videotube' ),
  10.         esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
  11.         get_avatar( get_the_author_meta( 'ID' ), 25, null, null, array( 'class' => 'h-auto w-auto mx-1' ) ),
  12.         get_the_author_meta( 'display_name' )
  13.     );
  14. }
  15. add_action( 'videotube_video_meta', 'videotube_show_video_author' );
Add Comment
Please, Sign In to add comment