1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php if( !function_exists( 'penci_get_post_countview' ) ) { function penci_get_post_countview( $post_id, $show = false ) {
$count = (int) get_post_meta( $post_id, '_count-views_all', true );
$output = '<span class="entry-meta-item penci-post-countview penci_post-meta_item">'; $output .= '<i class="fa fa-eye"></i><span>' . $count . '</span>'; $output .= '</span>';
if ( $show ) { echo $output; }
return $output; } }
|