Skip to content

Instantly share code, notes, and snippets.

View vsmith72's full-sized avatar

Vanessa Smith vsmith72

View GitHub Profile
Popular Posts
// use this for getting popular posts without a plug in
// this is the code for the functions.php
// paste as is no spaces
function getPostViews($postID){
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);