39 lines
763 B
PHP
39 lines
763 B
PHP
<?php get_header(); ?>
|
|
<h3>Résultat:</h3>
|
|
|
|
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
|
|
|
<article>
|
|
|
|
<a href="<?php the_permalink(); ?>">
|
|
<h3><?php the_title(); ?></h3></a>
|
|
<?php the_excerpt(); ?>
|
|
|
|
<footer>
|
|
<?php
|
|
|
|
$categories = get_the_category();
|
|
if ( ! empty( $categories ) ) {
|
|
$art_cat_link = esc_url( get_category_link( $categories[0]->term_id ));
|
|
$art_cat_name = esc_html( $categories[0]->name );
|
|
$art_permalink = get_the_permalink();
|
|
|
|
// echo "<a href='". $art_cat_link."'><span class='tag'>".$art_cat_name ."</span></a>
|
|
echo "
|
|
<a href='". $art_permalink ."'>
|
|
<span class='dtlink'>Lire la suite</span>
|
|
</a>";
|
|
} ?>
|
|
|
|
</footer>
|
|
</article>
|
|
<br>
|
|
<br>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php get_footer(); ?>
|
|
|