-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy-blog-types.php
62 lines (42 loc) · 1.51 KB
/
taxonomy-blog-types.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* The template for displaying a blog listing.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package tni
*/
get_header();
if ( have_posts() ) : ?>
<header class="page-header clearfix">
<?php
$term_id = get_queried_object()->term_id;
$image_id = get_term_meta( $term_id, 'image', true );
$image_data = wp_get_attachment_image_src( $image_id, 'post_thumbnail' );
$image = $image_data[0];
?>
<?php if ( ! empty( $image ) ) : ?>
<img src="<?php echo esc_url( $image ); ?>" title="<?php the_archive_title() ?>"/>
<?php else : ?>
<img class="image-placeholder" src="<?php echo get_stylesheet_directory_uri(); ?>/images/tni-placeholder.png" alt="" />
<?php endif; ?>
<?php the_archive_description( '<div class="archive-description">', '</div>' ); ?>
</header>
<?php endif; ?>
<section id="primary" class="content-archive content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) : ?>
<div id="post-wrapper" class="post-wrapper clearfix">
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'blog' );
endwhile; ?>
</div>
<?php gridbox_pagination(); ?>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</section><!-- #primary -->
<?php get_footer(); ?>