qdouze2-wordpress-theme/tag.php

10 lines
385 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 $tag = get_category( get_query_var( 'tag' ) );
kspace_cat_breadcrumb_with_rss(single_cat_title('', false), 'tag', 'RSS du tag', get_tag_link( $tag->cat_ID ) . '/feed' );
?>
<?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(); ?>