Skip to content

Instantly share code, notes, and snippets.

@shahzaibkhan
Created July 4, 2022 17:17
Show Gist options
  • Save shahzaibkhan/040eb1104cd935ac896718a3b52e66d7 to your computer and use it in GitHub Desktop.
Save shahzaibkhan/040eb1104cd935ac896718a3b52e66d7 to your computer and use it in GitHub Desktop.
track_post_views
<?php
function track_post_views ($post_id) {
if ( !is_single() ) return;
if ( empty ( $post_id) ) {
global $post;
$post_id = $post->ID;
}
set_post_views($post_id);
}
add_action( 'wp_head', 'track_post_views');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment