J'ai développé un solution qui me permet de faire ce que je voulais.
Je ne sais pas si la méthode est idéal, mais elle remplis sa fonction.
Voici pour ceux que sa pourrais aidés :
<?php $i=1;?>
<?php if (have_posts()) : ?>
<?php query_posts('order=ASC'); ?>
<?php while(have_posts()) : the_post(); ?>
<?php if ( in_category('accueil')){
?>
<?php if($i == 1){
echo "<aside class=\"main_mi\">
<img src=\"wp-content/themes/GRH/images/rosase.png\" alt=\"Présentation\" class=\"ico\"/><h1>";the_title(); echo"</h2><br/>
<p>";
the_content();
echo"</p>
</aside>";
$i++;}
else
{
if($i == 2){
echo "<aside class=\"main_mi\">
<img src=\"wp-content/themes/GRH/images/obj.png\" alt=\"Objectifs\" class=\"ico\"/><h2>";the_title(); echo"</h2><br/>
<p>";
the_content();
echo"</p>
</aside>";
$i++;}
else
{
if($i == 3){
echo "<aside class=\"main_tout\">
<img src=\"wp-content/themes/GRH/images/obj.png\" alt=\"Objectifs\" class=\"ico\"/><h2>";the_title(); echo"</h1><br/>
<p>";
the_content();
echo"</p>
</aside>";
$i++;}
}
}
?>
<?php } ?>
<?php endwhile; ?>
<?php endif; ?>