Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_total_like', 'jnews_custom_fake_like', 99, 2 );
- function jnews_custom_fake_like( $count, $post_id ) {
- $count = (int) $count * 5; /* total count * 5 */
- return $count;
- }
Advertisement
Add Comment
Please, Sign In to add comment