Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'jnews_render_after_meta_left', 'add_view_counter_meta' );
- function add_view_counter_meta() {
- $total = apply_filters( 'jnews_get_total_view', 0, get_the_ID(), 'all' );
- $total = JNews_Initial_Counter::getInstance()->get_total_fake_view( $total, get_the_ID() );
- ?>
- <div class="jeg_custom_meta_view">
- <span><span class="meta_text">Views: </span>
- <?php echo esc_html( $total ); ?>
- </span>
- </div>
- <?php
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement