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);
-
Notifications
You must be signed in to change notification settings - Fork 0
zerobyt/Most-View-Post-Wordpress
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Get & Set the most view post in Wordpress
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published