query_posts and a specific category
-
Hello.
Wondering if this is a good code to get all post of a specific category to a page?
<?php query_posts(‘cat=25’.get_the_title()); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>Furthermore I would like to have ten posts per page, I would like to use next/previous function of some sort.
This I′ve got now, but it doesn′t work properly.
What have I done wrong?<?php previous_post_link(‘%link’, ‘%title’, TRUE, ‘7’); ?>
<?php next_post_link(‘%link’, ‘%title’, TRUE, ’10’); ?>Thanx!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘query_posts and a specific category’ is closed to new replies.