/home/awneajlw/work.codestechvista.com/wp-content/plugins/ignavo-core/inc/post_view.php
<?php

function ignavo_set_post_views($postID) {
    $count_key = 'ignavo_post_views_count';
    $count = get_post_meta($postID, $count_key, true);
    if($count==''){
        $count = 0;
        delete_post_meta($postID, $count_key);
        add_post_meta($postID, $count_key, '0');
    }else{
        $count++;
        update_post_meta($postID, $count_key, $count);
    }
}
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);


function ignavo_track_post_views ($post_id) {
    if ( !is_single() ) return;
    if ( empty ( $post_id) ) {
        global $post;
        $post_id = $post->ID;    
    }
    ignavo_set_post_views($post_id);
}
add_action( 'wp_head', 'ignavo_track_post_views');



function ignavo_get_post_views($postID){
    $count_key = 'ignavo_post_views_count';
    $count = get_post_meta($postID, $count_key, true);
    if($count==''){
        delete_post_meta($postID, $count_key);
        add_post_meta($postID, $count_key, '0');
        return "0 View";
    }
    return $count.' Views';
}

 ?>