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/sidebar/last-articles.php
2023-05-02 09:23:01 +02:00

16 lines
357 B
PHP

<section class="card head-secondary">
<h2 class="card-header"><i class="fa fa-rss" aria-hidden="true"></i> Publications</h2>
<div class="menu fg-dark">
<ul>
<?php
wp_get_archives( array(
'type' => 'postbypost',
'echo' => 1,
'order' => 'ASC',
'limit' => 6
) );
?>
</ul>
</div>
</section>