-
Notifications
You must be signed in to change notification settings - Fork 0
/
taxonomy-video-tags.php
executable file
·60 lines (49 loc) · 1.47 KB
/
taxonomy-video-tags.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
<?php
/**
* Taxonomy video-tags
* @package UnPress
* @since UnPress 1.0
*/
get_header(); ?>
<div id="page-wrap">
<?php if (have_posts()) :?>
<section class="container module masonry">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-4 sticky-col">
<div class="category-box sticky-box static_col">
<h2><?php single_tag_title(); ?></h2>
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-8">
<div class="row post-row">
<?php
while (have_posts()) : the_post();?>
<div id="post-<?php the_ID(); ?>" <?php post_class("post-holder col-lg-4 col-md-4 col-sm-6 col-xs-12"); ?>>
<div class="featured-image image-holder holder">
<?php unpress_masonry_image(); ?>
</div><!-- .featured-image -->
<div class="post-content-holder">
<header>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p class="post-author"><?php _e("by", "favethemes");?> <?php the_author();?></p>
</header>
<div class="post-entry-holder">
<?php the_excerpt(); ?>
</div><!-- .post-entry-holder -->
</div><!-- .post-content-holder -->
</div><!-- .post-holder -->
<?php
endwhile;
?>
</div><!-- .row -->
</div><!-- .col-lg-9 -->
</div><!-- .row -->
</section><!-- .container -->
<?php
//Page Nav
unpress_paging_nav();
endif;
wp_reset_query();
?>
</div>
<?php get_footer(); ?>