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/category.php

15 lines
488 B
PHP
Raw Permalink Normal View History

2022-12-17 19:46:29 +01:00
<?php get_header(); ?> <!-- ouvrir header,php -->
2023-05-02 11:31:38 +02:00
<main id="skip">
2022-12-17 19:46:29 +01:00
<?php $category = get_category( get_query_var( 'cat' ) );
kspace_cat_breadcrumb_with_rss(single_cat_title('', false), 'folder-open', 'la catégorie', get_category_link( $category->cat_ID ) . '/feed' );
?>
2022-12-18 16:10:12 +01:00
<div class="well">
<?php the_archive_description() ?>
</div>
2022-12-17 19:46:29 +01:00
<?php include(TEMPLATEPATH . '/components/preview-list.php'); ?>
</main>
2022-12-18 16:41:18 +01:00
<?php get_sidebar(); ?>
2022-12-17 19:46:29 +01:00
<?php get_footer(); ?>