First of all: do not use query_posts
use get_posts
or new WP_Query
instead.
If you want to show only most viewed posts, you’ll need to add action ( for ex. wp ) check if your on single post page and update that post meta views
( +1 ).
Then you could do something like these
$topViewedPosts = new WP_Query( array(
'post_type' => 'post',
'meta_key' => 'views',
'orderby' => 'meta_value_num', // sort by views
'order' => 'DESC', // sort 3 - 2 - 1
'posts_per_page' => 5
) );
if( $topViewedPosts->have_posts() )
while( $topViewedPosts->have_posts() ) : $topViewedPosts->the_post();
// your content here
endwhile;
endif; wp_reset_postdata();
May be i misunderstood what you’r looking for.. try to explane better than..
Related Posts:
- Custom WP_Query not working correctly
- Print Current Post Index number within Loop
- Should we trust the post globals?
- rewind_posts() – what actually the use of it, and where using is required or preferred?
- How to show list of posts by author and category?
- Override the default number of posts to show for a single loop?
- WordPress Number of Posts Not Changing With posts_per_page
- Count singular post views automatically
- Looping through posts per category gives same posts for each category
- Find most recent authors
- Get the author of the latest revision
- How to have different content in the loop and single
- Strange switch_to_blog() issue
- Multiple loops in same page, without duplicate content
- loop not displaying posts on custom template page
- How to Display Post View Count
- Displaying the number of posts in a custom loop (without including the number of posts of a loop below)?
- Display Latest Post from all Categories
- The correct way to call posts with ajax
- Divide Loop Into Days & Categories
- Converting multiple loops into one single loop with pagination
- How would I get 1 latest post from a query for 5 posts?
- Alternating post layout
- Check to see if specific loop has less than certain amount of posts
- How to display different number of posts
- WP Query – duplicated posts once including tags in search results
- wp_tag_cloud() and the_taxonomies() work but not the_tag()
- Show all posts in sidebar in single.php
- Split WordPress Latest Posts in Multiple Columns and Rows with one single loop [closed]
- Alternate row and columns every X posts
- Adding specific post category between posts in loop
- Multiple loops are not reset
- Exclude category from
- Blog post per page setting conflicting with custom WP_Query?
- How to exclude latest x posts from a paginated query?
- Posts will not display on page-mypage.php
- Pausing and Resuming WP_Query results
- Post Loop Missing Most Recent Post
- How to : pagination in 3 different custom loops on the same page
- Sharing post from archive page (loop) doesn’t work
- Start WP Pagination From Number 1 in URL
- Use two different post_per_page limits with infinite scroll
- Wrong post title displayed from loop
- Multiple Loops Breaking Pages
- Change all author links in Blog roll
- Showing categories and subcategories with posts
- Get the amount of posts on a current page
- older blog posts not showing in new theme
- How to get posts published on the latest date?
- How to only publish posts with image in it
- Page and post loop same template
- WordPress Query Posts From Category Post on Static Page
- Loop through posts? Want to remove extra newlines in actual post HTML/content on backend
- WP_Query: Show 10 posts in date order, first three random
- How include css class based on post ( in loop ) slug?
- WordPress Loop: How to display recent posts in multiple divs
- How to display posts on custom page without declaring a posts page in reading settings?
- Cannot implement byline into posts container in single.php
- How to check if there are posts with the same tag
- Accessing Post ID Within Loop
- Different number of posts per row in grid layout
- linking to post outside the loop
- WP_Query of Category Not Showing First Post
- How come this loop is not working? [closed]
- Using the loop to set locations for all posts on a single google map
- Defining ‘last’ class on foreach blog posts
- Want to change the post every three days with in specific category
- Separate top level categories on archive-product.php by meta
- While loop in functions.php outputting the_title() of each post on frontpage
- Shortcode for Comments and Comment Boxes in Post Loop
- Permalink Short code showing unnecessary link text inside the loop
- Numbered Pagination Showing The Same Posts After Altering WP_Query
- “read more” redirects to the wrong page
- Count singular post views automatically
- How can I get the last post while on the first post for pagination? As if it were infinite
- Loop and output 4 rows of posts on home page
- Double loop output
- Loop through all posts showing duplicates
- post->ID displays the same ID number for every post
- Posts are not showing up on next page.
- Post are not showing up
- How to make post button to a random post
- Display the latest post from some selected authors
- Advanced Post Display/Pagination/Ordering
- How to show the posts list into a static page? Problems to use the loop into a static page
- Keep post format class with isotope filter
- Make assigning post to a specific category equivalent to assigning it to all categories
- How to inject a post within a loop
- wordpress taxonomy results
- Sort by category and then date?
- Loop not allowing infinite scroll after post per page limit
- Customise the appearance of 4 specific post ID’s within the loop?
- what template-part to call, to have my post in the center of the page?
- WordPress posts loop pagination – first page return 125 posts instead of 10 and the rest return 10
- How to show only the date, the title and a little “summary” of my WordPress post in my custom theme?
- How do I create a template page to show 3 blog posts?
- posts_per_page – Repeats only first posts ‘post__in’ array
- Custom post order returning posts from other categories
- blog post displaying within older post – loop issue?
- WordPress Ajax load doesn’t work