specific categories on specific pages.
-
specific categories on specific pages.
My site displays specific categories on specific pages.
I achieved this by using the following code
<?php if (have_posts()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=Blog&paged=$paged"); } ?>
provided by Kafkaesqui
My onlt issue is that it is only displaying the last entry.
how can i make it show a specific number of post?
and why does it remove my page title and replace it with the title of the first post?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘specific categories on specific pages.’ is closed to new replies.