poliquinp
Member
Posted 1 year ago #
I would like to know if it is possible for me to show the last post of "x" category into a post page?
At the moment, when I use this part of script, my little box is overwritting my current page content.
<?php query_posts('cat=1&posts_per_page=1'); ?>
<?php
if (have_posts()) : while (have_posts()) : the_post();
?>
<a href="<?php the_guid(); ?>" title="Lire le reste de ce conseil pratique" id="lire_suite">Lire la suite du conseil pratique</a>
<?php endwhile; endif; ?>
Can some tell me how I could fix it?
dallasmoore
Member
Posted 1 year ago #
I've taken this example from the following codex page on Loops: http://codex.wordpress.org/The_Loop You can only call one wp_query unless you create a separate variable. This is just one of the examples given on the page.
// going off on my own here
<?php $temp_query = $wp_query; ?>
<!-- Do stuff... -->
<?php query_posts('category_name=special_cat&posts_per_page=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Do special_cat stuff... -->
<?php endwhile; ?>
// now back to our regularly scheduled programming
<?php $wp_query = $temp_query; ?>
You would obviously want to substitute your own query args and content.
poliquinp
Member
Posted 1 year ago #
I found the awnser..
wp_reset_query();