I have been trying to work this out but to no avail!
I want to show only posts from the category 'shop' and the child categories within shop on the post page.
ANy help appreciated!
Thanks
Dave
I have been trying to work this out but to no avail!
I want to show only posts from the category 'shop' and the child categories within shop on the post page.
ANy help appreciated!
Thanks
Dave
Try adding:
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args= array(
'category_name' => 'shop',
'paged' => $paged
);
query_posts($args);
?>
to the relevant template file just before the start of the Loop.
Exellent esmi,
I will give that a go tomorrow!
Thanks v much
This topic has been closed to new replies.