Advertisement
phpface

Show post views from Post Views Counter plugin

Dec 27th, 2021
1,943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. /**
  2.  *
  3.  * Show post views from Post Views Counter plugin
  4.  *
  5.  * @return output HTML
  6.  */
  7. function streamtube_child_show_post_view_count(){
  8.     if( function_exists( 'pvc_get_post_views' ) && 0 < ( $post_views = pvc_get_post_views() ) ){
  9.         ?><div class="post-meta__view-count">
  10.             <span class="icon-eye"></span>
  11.             <?php echo number_format_i18n( $post_views );?>
  12.         </div><?php
  13.     }
  14. }
  15. add_action( 'streamtube/post/meta/item', 'streamtube_child_show_post_view_count' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement