categories - Exclude category and post from loop in custom category.php

admin2025-06-05  2

So I created a custom category.php where I have the following loop:

<div id="category__product-grid" class="row">
<?php

// The Loop
while ( have_posts() ) : the_post(); ?>

<div class="col-md-4 col-product-item">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><div class="cat__featured-img"><?php the_post_thumbnail(); ?></div></a>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</div>

<?php endwhile; 

else: ?>
<p>Sorry, no posts matched your criteria.</p>
</div>  

I broke my head trying to understand how can I exclude the needed categories from this loop and the required posts as well. Would appreciate any help!

So I created a custom category.php where I have the following loop:

<div id="category__product-grid" class="row">
<?php

// The Loop
while ( have_posts() ) : the_post(); ?>

<div class="col-md-4 col-product-item">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><div class="cat__featured-img"><?php the_post_thumbnail(); ?></div></a>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</div>

<?php endwhile; 

else: ?>
<p>Sorry, no posts matched your criteria.</p>
</div>  

I broke my head trying to understand how can I exclude the needed categories from this loop and the required posts as well. Would appreciate any help!

Share Improve this question asked Dec 8, 2018 at 15:50 JamdevJamdev 1175 bronze badges 2
  • did you try pre_get_posts? – rudtek Commented Dec 8, 2018 at 16:16
  • @rudtek no, could you, please, let me know more details? – Jamdev Commented Dec 8, 2018 at 16:25
Add a comment  | 

1 Answer 1

Reset to default 0

Here is a correct way:

<div id="category__product-grid" class="row">
<?php query_posts( array( 'cat' => array(6,-45), 'post__not_in' => array(-598), 'orderby' => 'title', 'order' => 'ASC' ) ); ?>

<?php

// The Loop
while ( have_posts() ) : the_post(); ?>

<div class="col-md-4 col-product-item">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><div class="cat__featured-img"><?php the_post_thumbnail(); ?></div></a>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</div>

<?php endwhile; 

else: ?>
<p>Sorry, no posts matched your criteria.</p>
</div>  
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749115613a316495.html

最新回复(0)