Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 667 Bytes

README.md

File metadata and controls

15 lines (15 loc) · 667 Bytes

Most-View-Post-Wordpress

GET THE COUNT VIEWS IN POST
USE IN THE WP LOOP: get_post_view_count($post->ID);

USE IN WP QUERY:
    $args = array(
    'numberposts' => 4,
    'orderby' => 'meta_value',
    'meta_key' => 'post_views_count',
    'order' => 'DESC',
    'post_type' => 'post',
    'post_status' => 'publish'
    );

ADD A VIEW TO THE COUNT
    set_post_view($post->ID);