-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy.php
28 lines (23 loc) · 931 Bytes
/
taxonomy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
get_header();
?>
<section class="hi">
<div class="text">
<h2 role="heading" aria-level="3"><?php _e( 'Projets réalisés utilisant ', 'portfolio' ); ?><?php single_term_title(); ?></h2>
</div>
</section>
<section class="projets">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article role="article">
<a href="<?php the_permalink(); ?>"><h3 role="heading" aria-level="3"><?php the_title(); ?> <span><time date="<?php the_time('Y-m-d') ?>" pubdate><?php echo(get_the_date()) ?></time></span></h3></a>
<figure><img src="<?php the_field('image_section_une'); ?>" alt="<?php the_title(); ?>"></figure>
<div><?php the_field('texte_section_une'); ?></div>
<div><?php the_terms( $post->ID, 'Competence', 'Technologies: ', ' / ' ); ?></div>
</article>
<?php endwhile; ?>
<?php endif; ?>
</section>
<?php
get_footer();
?>