Search code examples
phpwordpresstaxonomy

Wordpress retrieve posts from custom Taxonomy


I am trying to load all the images from posts in cat 5 within the gallery_Category taxonomy I created. Nothing is working and I can't see why not.

<?php

            $args = array(
                    'post_type' => 'post',
                    'taxonomy' => 'gallery_category',
                    'term_id' => '5'
            );
            $query = new WP_Query($args);
            while ($wp_query->have_posts()) {
               $wp_query->the_post();
                ?>
               <?php the_post_thumbnail(); ?>
        <?php } ?>

Solution

  • <?php
    
    $args = array(
        'post_type' => 'post',
        'tax_query' => array(
            array(
                'taxonomy'  => 'gallery_category',
                'field'     => 'slug',
                'terms'     => '5'
            )
        )
    );
    
    $my_query = new WP_Query($args);
    while ($my_query->have_posts()) {
    $my_query->the_post();
    
      if ( has_post_thumbnail()) {
        the_post_thumbnail();
      } 
    
     } 
    ?>
    

    try this

    also do refer here

    wp query

    wordpress loop