arie_cristianD

add fake like multiple by 5

Oct 20th, 2025
1,380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_filter( 'jnews_total_like', 'jnews_custom_fake_like', 99, 2 );
  2.  
  3.  
  4. function jnews_custom_fake_like( $count, $post_id ) {
  5.     $count = (int) $count * 5; /* total count * 5  */
  6.     return $count;
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment