Advertisement
arie_cristianD

delete_count_on_popularNewsWidget

Jul 6th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. /* add filer to delete share count on popular news */
  2.  
  3. add_filter('jnews_total_share','delete_count');
  4.  
  5. function delete_count($count){
  6.     $count = '';
  7.     return $count ;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement