-
Notifications
You must be signed in to change notification settings - Fork 0
/
CODE FOR SINGLE PROJECT.php
44 lines (34 loc) · 1.26 KB
/
CODE FOR SINGLE PROJECT.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Template part for displaying single posts.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Sassy_Underscores
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title showcasing">', '</h1>' ); ?>
</header><!-- .entry-header -->
<div class="showcase-content">
<?php the_content(); ?>
</div><!-- .showcase-content -->
<div class="showcase-right">
<div class="taxonomies">
<div class="project-types">
<?php echo get_the_term_list($post->ID, 'project-type', '<h3 class="project-type">', '</h3><h3 class="project-type">', '</h3>' ); ?>
</div>
<div class="languages">
<?php echo get_the_term_list($post->ID, 'manufacturer', '<h3>Manufacturer:</h3>', ', ', '' ); ?>
</div>
<div class="languages">
<?php echo get_the_term_list($post->ID, 'languages', '<h3>Languages:</h3>', ', ', '' ); ?>
</div>
<div class="software">
<?php echo get_the_term_list($post->ID, 'software', '<h3>Software:</h3>', ', ', '' ); ?>
</div>
</div><!-- taxonomies -->
<a href="../../#portfolio" class="back-to"><i class="fa fa-arrow-circle-left"></i> Portfolio</a>
</div><!-- showcase-right -->
</article><!-- #post-## -->