• Resolved n8paul

    (@n8paul)


    I would like to display post from a combination of two categories only.

    For instance, the page should only display posts that are from both categories not just one of them.

    This is what I have for showing post from one specific category.

    <?php
    $temp = $wp_query;
    $wp_query= null;
    $wp_query = new WP_Query();
    $wp_query->query('cat=7'.'&paged='.$paged);
    ?>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Show posts by category combination’ is closed to new replies.