Search code examples
phpwordpresswoocommercecustom-taxonomytaxonomy-terms

Exclude category by slug for foreach loop Woocommerce


I'm trying to remove a product category term slug called "outlet" from my loop and I saw this post Exclude a WooCommerce product category from a WP_Query

I tried in my code, but I'm missing something, is there a way to remove a specific product category?

<?php
  $get_parents_cats = array(
    'taxonomy' => 'product_cat',
    'parent'   => 0,
    'number'       => '9',
    'hide_empty' => false,
    'tax_query' => array(
         'taxonomy' => 'category',
         'field'    => 'slug',
         'terms'    => array( 'outlet' ),
         'operator' => 'NOT IN',
    ),
  );

  $categories = get_categories( $get_parents_cats );
  
  foreach ($categories as $cat) {
    $cat_id   = $cat->term_id;
    $cat_link = get_category_link( $cat_id );
    $term_link = get_term_link( $cat->term_id );
    
    $thumbnail_id = get_woocommerce_term_meta( $cat->term_id, 'thumbnail_id', true ); // Get Category Thumbnail
    $image = wp_get_attachment_url( $thumbnail_id ); 
    if ( $image ) {?>
  
    <div class="wrapper">
        <img src="<?php echo $image; ?>"/>
        <a href="<?php echo get_term_link($cat->slug, 'product_cat') ?>">
        <div class="title">
            <h3><?php echo $cat->name; ?></h3>
        </div>
        </a>
    </div>
    
  
    <?php
    }
    wp_reset_query();} 
  ?>

Solution

  • There are some mistakes and missing things in your code. Try the following instead:

    <?php
    $taxonmomy     = 'product_cat';
    $exclude_slug  = 'outlet';
    $exclude_id    = $term_name = get_term_by( 'slug', $exclude_slug, $taxonmomy )->term_id; // term Id to be excluded
    
    // Get the array of top level product category WP_Terms Objects 
    $parents_terms = get_terms( array(
        'taxonomy'   => $taxonmomy,
        'parent'     => 0,
        'number'     => 9,
        'hide_empty' => 0,
        'exclude'    => $exclude_id,
    ) );
    
    // Loop through top level product categories
    foreach ($parents_terms as $term) {
        $term_id   = $term->term_id;
        $term_name = $term->name;
        $term_link = get_term_link( $term, $taxonmomy );
        $thumb_id  = get_woocommerce_term_meta( $term_id, 'thumbnail_id', true ); // Get term thumbnail id
    
        // Display only product categories that have a thumbnail
        if ( $thumb_id > 0 ) :
            $image_src = wp_get_attachment_url( $thumb_id ); // Get term thumbnail url
        ?>
        <div class="wrapper">
            <img src="<?php echo $image_src; ?>"/>
            <a href="<?php echo $term_link ?>">
                <div class="title">
                    <h3><?php echo $term_name; ?></h3>
                </div>
            </a>
        </div>
        <?php
        endif;
    }
    ?>
    

    Tested and works.