Advertisement
arie_cristianD

hide author box on specific users

Dec 10th, 2024
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. add_filter( 'jnews_single_show_author_box', 'hide_on_spesific_user', 99, 2 );
  2.  
  3.  
  4. function hide_on_spesific_user( $flag, $post_id ) {
  5.     $hide_user_list = array( 29, 40, 1 );  /* the list of user_id thtat you want to hide the author box */
  6.     $author_id      = get_post_field( 'post_author', $post_id );
  7.     $flag           = in_array( $author_id, $hide_user_list ) ? false : true;
  8.  
  9.     return $flag;
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement