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

16 lines
375 B
PHP
Raw Normal View History

2023-11-20 10:05:50 +01:00
<section class="card c-secondary">
2023-11-20 13:04:09 +01:00
<h2 class="card-header"><svg class="icon" alt=""><use xlink:href="#icon-rss"></use></svg> Publications</h2>
2022-12-17 22:34:02 +01:00
<div class="menu fg-dark">
<ul>
2022-12-17 19:46:29 +01:00
<?php
wp_get_archives( array(
'type' => 'postbypost',
'echo' => 1,
'order' => 'ASC',
'limit' => 6
) );
?>
2022-12-17 22:34:02 +01:00
</ul>
</div>
</section>