Coucou,j'ai un petit problème de php que je ne comprends pas
le problème est au niveau du else.
help svp
<?php get_header() ?>
<?php if (have_posts()): ?>
<?php while (have_posts()): the_post(); ?>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">
<?php the_title() ?>
</h5>
<h6 class="card-subtitle mb-2 text-muted">
<?php the_category() ?>
</h6>
<p class="card-text">
<?php the_excerpt() ?>
</p>
</div>
</div>
</div>
<?php else: ?>
<p>no article</p>
<?php endif; ?>
<?php get_footer() ?>
le problème est au niveau du else.
help svp