• How to query the post if post views is greater than 500 views

    
    $query = new WP_Query(array(
    	 'post_type' => 'post', 
    	 'posts_per_page' =>'10',
    	 'post_status' => 'publish' 
    	  ), 
    ) ;
    
     if($query->have_posts()){
      
            while($query->have_posts()) : $query->the_post() ; ?>
       
    
        <h2><?php get_the_title() ?></h2>
              <?php
      endwhile;
      
       }else {
                echo  'Sorry, no posts were found';
              }    
     ?>
  • The topic ‘Query post by views’ is closed to new replies.