Where is stored total views
-
I need to make a sorting of posts by a custom_post_meta and post_views.
– i cannot find total number of views in post_meta for each post, where is stored and how i could make a sorting by a meta field and post views?
This works, but i need to sort by post meta too
$args = array( 'post_type' => 'post', 'post_status' => array('publish'), 'posts_per_page' => $posts_per_page, 'offset' => $offset, 'paged' => $paged, 'orderby' => 'post_views', 'order' => 'DESC', ); $query = new WP_Query( $args );
Something like:
https://wordpress.stackexchange.com/questions/75079/nested-meta-query-with-multiple-relation-keys
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Where is stored total views’ is closed to new replies.