Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * Show post views from Post Views Counter plugin
- *
- * @return output HTML
- */
- function streamtube_child_show_post_view_count(){
- if( function_exists( 'pvc_get_post_views' ) && 0 < ( $post_views = pvc_get_post_views() ) ){
- ?><div class="post-meta__view-count">
- <span class="icon-eye"></span>
- <?php echo number_format_i18n( $post_views );?>
- </div><?php
- }
- }
- add_action( 'streamtube/post/meta/item', 'streamtube_child_show_post_view_count' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement