• Hi, I need to write a query to be able to show the gallery associated with a post only if that post has a specific tag.

    I would need some thing like:
    php query

    code that shows the gallery

    end of php query

    is it possible?

Viewing 1 replies (of 1 total)
  • Thread Starter mariostella

    (@mariostella)

    My current query is as such:

    <?php
    $tags = 'show-gal'; // separate multiple tags with comma
    $myquery = new WP_Query("tag=$tags");?>
    <?php if($myquery->have_posts()) : ?>
    
                    Do my stuff
    
    <?php endif; ?>

    But it’s not working.

    Anyone on this?

Viewing 1 replies (of 1 total)
  • The topic ‘Show gallery based on post tag’ is closed to new replies.