• hi all, how to show only post in child category not in the parent example:

    general
    |
    |- child 1
    |- child 2

    (empty)

    |- child 1

    post 1

    post 2

Viewing 1 replies (of 1 total)
  • Hi,

    try this, it work well for me.

    <?php query_posts(array(‘category__in’ => array(11)));?>

    this will show only post with category id 11..

    Cheers.

Viewing 1 replies (of 1 total)
  • The topic ‘how to only show post in child category’ is closed to new replies.