Код: Выделить всё
function get_post_views( $post_id ) {
$count_key = 'post_views_count';
// Check if the meta key exists before deletion
if (!get_post_meta($post_id, $count_key)) {
add_post_meta( $post_id, $count_key, '0' );
}
$count = get_post_meta( $post_id, $count_key, true );
return $count;
}
function set_post_views( $post_id ) {
$count_key = 'post_views_count';
$count = get_post_meta( $post_id, $count_key, true );
if ( $count == '' ) {
$count = 0;
delete_post_meta( $post_id, $count_key );
add_post_meta( $post_id, $count_key, '0' );
} else {
$count++;
update_post_meta( $post_id, $count_key, $count );
}
}
add_action( 'wp_head', 'set_post_views' );
function display_post_views( $post_id ) {
$count = get_post_views( $post_id );
echo '[h4][i][/i]' . $count . '[/h4]';
}
add_filter( 'the_content', 'display_post_views' );
Код: Выделить всё
Я тестирую это на localhost, используя < Strong>XAMPP.
Подробнее здесь: https://stackoverflow.com/questions/784 ... le-page-wp