forked from zrj766/RiPro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.php
49 lines (43 loc) · 1.56 KB
/
tag.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
<?php
get_header();
$tagName = single_tag_title('',false);
$tagObject = get_term_by('name',$tagName,'post_tag');
$tagID = $tagObject->term_id;
$the_style = get_term_meta($tagID, 'the_style', 'true');
$the_sidebar = (get_term_meta($tagID, 'is_sidebar', 'true')) ? 'right':'none';
$column_classes = cao_column_classes( $the_sidebar );
$latest_layout = ($the_style) ? $the_style : _cao( 'latest_layout', 'grid' ) ;
$the_style = ($the_style) ? 'list' : 'grid' ;
?>
<div class="container">
<?php if (!get_term_meta($tagID, 'is_filter', 'true')) {
get_template_part( 'parts/filter-bar' );
} ?>
<div class="row">
<div class="<?php echo esc_attr( $column_classes[0] ); ?>">
<div class="content-area">
<main class="site-main">
<?php if ( have_posts() ) : ?>
<div class="row posts-wrapper">
<?php while ( have_posts() ) : the_post();
get_template_part( 'parts/template-parts/content', $latest_layout );
endwhile; ?>
</div>
<?php get_template_part( 'parts/pagination' ); ?>
<?php else : ?>
<?php get_template_part( 'parts/template-parts/content', 'none' ); ?>
<?php endif; ?>
</main>
</div>
</div>
<?php if ( $the_sidebar !='none' ) : ?>
<div class="<?php echo esc_attr( $column_classes[1] ); ?>">
<?php get_sidebar(); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php
wp_reset_postdata();
echo ob_get_clean();
get_footer();