qdouze2-wordpress-theme/category.php

16 lines
532 B
PHP
Raw Normal View History

2022-12-17 19:46:29 +01:00
<?php get_header(); ?> <!-- ouvrir header,php -->
<main>
<?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>
<!-- Sidebar custom pour contenir la description -->
2022-12-18 16:41:18 +01:00
<?php get_sidebar(); ?>
2022-12-17 19:46:29 +01:00
<?php get_footer(); ?>