This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze2-wordpress-theme/components/previews.php

26 lines
807 B
PHP
Raw Normal View History

2022-12-18 13:48:49 +01:00
<?php while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>" class="preview">
2022-12-18 13:48:49 +01:00
<div class="preview-thumbnail">
<?php the_post_thumbnail( ); ?>
2022-12-18 13:48:49 +01:00
</div>
<div class="preview-text">
<h2><?php the_title(); ?></h2>
2022-12-18 13:48:49 +01:00
<div class="flex-that">
<div>
<?php
if (!has_category('chapters')) {
$category = get_the_category();
2023-11-20 10:05:50 +01:00
echo"<span class='badge c-secondary small-text m-0'>" . $category[0]->cat_name . "</span>";
2022-12-18 13:48:49 +01:00
}
?>
</div>
<div>
2023-11-20 10:05:50 +01:00
<time><span class="badge c-secondary small-text m-0"><?php the_time('d/m/Y') ?></span></time>
2022-12-18 13:48:49 +01:00
</div>
</div>
2023-11-24 20:23:34 +01:00
<div class="preview-excerpt"><?php the_excerpt(); ?></div>
2022-12-18 13:48:49 +01:00
</div>
</a>
2022-12-18 13:48:49 +01:00
<?php endwhile; ?>