removing sub category posts from category on home page
-
hi ,
i am using the below code on my home page to display recent posts of a particular category ..wht i want to ask is i dont want to show sub category posts in it .
<ul id="rightSidebarGallery"> <?php $photoGal = new WP_Query();$photoGal->query('cat=1&showposts=6'); ?> <?php while ($photoGal->have_posts()) : $photoGal->the_post(); ?> <li><a href="<?php the_permalink() ?>"><img src="<?php viva('NpAdvMainPGThumb','8'); ?>" alt="<?php the_title(); ?>" /></a><p><p><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; wp_reset_query(); ?> </ul>
u can see it live on my blog page at
https://karomasti.com/telugu-cinema/
where at right u can find latest songs ..there i want to exclude sub category posts…
thanks in advance
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘removing sub category posts from category on home page’ is closed to new replies.