Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_view_initial_counter', 'fake_counter', null, 3 );
- if ( ! function_exists( 'fake_counter' ) ) {
- function fake_counter( $counter, $post_id ) {
- $real_view = apply_filters( 'jnews_get_total_view', 0, $post_id, 'all' );
- $counter = $real_view * 3;
- $counter = $counter - $real_view;
- return $counter;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement