Showing post with "_is_featured" meta_key = no
-
Hi. I have this code into my template:
`<?php $args_super = array(‘posts_per_page’ => -1, ‘post_type’ => ‘any’, ‘featured’ => ‘yes’); ?>
<?php $my_query_super = new WP_Query($args_super); ?>
<?php if ($my_query_super->have_posts()) : while ($my_query_super->have_posts()) : $my_query_super->the_post(); ?>
<!– POST FORMAT –>
<?php endwhile; wp_reset_postdata(); ?>
<?php endif; wp_reset_query(); ?>I checked and unchecked some post to try funcionality. I checke 3 post and 2 custom posts (1 custom post type = news and 1 custom post type = projects). But, instead of 5 featured posts, I’m getting 8 featured posts. I take a look at the database and I noticed that the query also includes posts with meta value = no. I try runing post type array in the WP query and also meta query array but I’m not obtaining the right results. The query isn’t retrieving only the 5 featured posts.
Do I’m doing something wrong?
ps: sorry for my bad english.
- The topic ‘Showing post with "_is_featured" meta_key = no’ is closed to new replies.