Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Ok I finally found the answer so I post here :

    <?php query_posts(array( 'post_type' => 'page',  'post_parent' => '2', 'orderby' => 'menu_order', 'order' => 'ASC' )); ?>
    	<?php if (have_posts()) : ?>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
    				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Lien permanent vers <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    				<div class="entry">
    					<?php the_content('Lire la suite &raquo;'); ?>
    				</div>
    			</div>
    
    		<?php endwhile; ?>
    
    	<?php else : ?>
    
    		<h2 class="center">Introuvable</h2>
    		<p class="center">Désolé, mais vous cherchez quelque chose qui ne se trouve pas ici.</p>
    		<?php get_search_form(); ?>
    
    	<?php endif; ?>

    Hi

    I have the same problem. I will be very grateful if someone can answer that.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)