2020-12-30 19:04:58 +01:00
|
|
|
<?php get_header(); ?> <!-- ouvrir header,php -->
|
2021-01-03 10:41:52 +01:00
|
|
|
<main>
|
2021-01-01 00:05:33 +01:00
|
|
|
|
|
|
|
<div class="flex-that">
|
|
|
|
<nav aria-label="breadcrumb">
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class='breadcrumb-item'><a href='<?php echo site_url(); ?>'>kazhnuz.space</a></li><?php $categories = get_the_category();
|
|
|
|
foreach( $categories as $category ) {
|
|
|
|
echo "<li class='breadcrumb-item'><a href='" . esc_url( get_category_link( $category->term_id ) ) . "'><i class='fa fa-folder-open'></i> " . $category->cat_name . "</a></li>";
|
|
|
|
} ?><li class="breadcrumb-item" aria-current="page"><span class="active"><i class="fa fa-file"></i> <?php echo the_title(); ?></span></li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
2020-12-30 19:04:58 +01:00
|
|
|
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
|
2020-12-30 22:42:54 +01:00
|
|
|
|
2021-01-03 10:25:14 +01:00
|
|
|
<article class="article container-article" id="post-<?php the_ID(); ?>">
|
2020-12-30 22:42:54 +01:00
|
|
|
<h1 class="page-title"><?php the_title(); ?></h1>
|
|
|
|
|
|
|
|
<div class="article-entry">
|
2020-12-30 19:04:58 +01:00
|
|
|
<?php the_content(); ?>
|
|
|
|
</div>
|
2021-01-03 09:11:45 +01:00
|
|
|
</article>
|
2020-12-30 22:42:54 +01:00
|
|
|
|
2021-01-03 09:11:45 +01:00
|
|
|
<section class="card card-noheader">
|
|
|
|
<div class="author-area">
|
|
|
|
<? echo get_avatar( get_the_author_meta('user_email'), $size = '120'); ?>
|
|
|
|
<div class="author-metadata">
|
|
|
|
<div class="author-pseudo">Écrit par <a href="https://kazhnuz.space"><?php the_author() ?></a></div>
|
|
|
|
<small class="author-date">Le <?php the_time('l j F Y à H:i') ?></small>
|
2020-12-30 22:42:54 +01:00
|
|
|
</div>
|
2021-01-03 09:11:45 +01:00
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
$custom_fields = get_post_custom();
|
|
|
|
$my_custom_field = $custom_fields['description'];
|
|
|
|
if ($my_custom_field != null) {
|
|
|
|
foreach ( $my_custom_field as $key => $value ) {
|
|
|
|
echo " <div class='card-body'> " . $value . "</div>";
|
|
|
|
}
|
2020-12-31 11:36:38 +01:00
|
|
|
|
2021-01-03 09:11:45 +01:00
|
|
|
}
|
|
|
|
?>
|
2020-12-31 08:45:00 +01:00
|
|
|
|
2021-01-03 09:11:45 +01:00
|
|
|
<div class="article-category">
|
|
|
|
<?php $categories = get_the_category();
|
|
|
|
foreach( $categories as $category ) {
|
|
|
|
echo "<a href= '" . esc_url( get_category_link( $category->term_id ) ) . "' class='btn-small btn-info'><i class='fa fa-folder'></i> " . $category->cat_name . "</a>";
|
|
|
|
} ?>
|
|
|
|
<?php $tags = get_the_tags();
|
|
|
|
if ($tags) {
|
|
|
|
foreach( $tags as $tag ) {
|
2021-01-03 10:25:50 +01:00
|
|
|
echo "<a href= '" . esc_url( get_tag_link( $tag->term_id ) ) . "' class='btn-small btn-primary'><i class='fa fa-tag'></i> " . $tag->name . "</a> ";
|
2021-01-03 09:11:45 +01:00
|
|
|
}
|
|
|
|
} ?>
|
2020-12-30 22:42:54 +01:00
|
|
|
|
2021-01-03 09:11:45 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
2020-12-30 22:42:54 +01:00
|
|
|
|
2020-12-30 19:04:58 +01:00
|
|
|
<?php comments_template(); ?>
|
2020-12-30 22:42:54 +01:00
|
|
|
|
2020-12-30 19:04:58 +01:00
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</main>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|