web-dev-qa-db-fra.com

the_excerpt ne pas afficher les messages

J'utilise le code suivant pour afficher le message le plus récent sur ma page de destination:

<?php if (have_posts()) : ?>
<?php if (($wp_query->post_count) > 1) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_excerpt() ?>
<?php endwhile; ?>

<?php else : ?>

<?php while (have_posts()) : the_post(); ?>
<?php the_excerpt() ?>
<?php endwhile; ?>
<?php endif; ?>

<?php else : ?>
<p>Nothing to see here.</p>

<?php endif; ?>

Mon problème est que le code ne semble pas produire d’extrait. Quel pourrait être le problème?

1
user1255049
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    <?php the_excerpt() ?>
<?php endwhile; else: ?>
    <p>Nothing to see here.</p>
<?php endif; ?>

C'est la bonne syntaxe pour afficher le titre et l'extrait sur la page d'accueil.

2
amit