forked from themesdefrance/Galopin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-footer-meta.php
40 lines (26 loc) · 1017 Bytes
/
content-footer-meta.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
<footer class="entry-footer post-footer">
<?php do_action('galopin_top_footer_post'); ?>
<?php if(apply_filters('galopin_display_post_tags', true)){ ?>
<?php if(has_tag() && is_single()){ ?>
<span class="post-footer-meta" itemscope="keywords">
<?php echo get_the_tag_list(apply_filters('galopin_before_post_tags', ''),' | ',apply_filters('galopin_after_post_tags', '')); ?>
</span>
<?php } ?>
<?php } ?>
<?php if(galopin_is_paginated_post() && !galopin_is_masonry()){ ?>
<nav>
<?php wp_link_pages(array(
'before'=>'<div class="post-pagination"><span class="page-links-title">'.__('Pages:', 'galopin').'</span>',
'after'=>'</div>'
)); ?>
</nav>
<?php } ?>
<?php if (galopin_is_masonry()){ ?>
<div class="masonry-footer">
<time class="date updated">
<?php the_time(get_option('date_format')); ?>
</time>
</div><!--END .masonry-footer-->
<?php } ?>
<?php do_action('galopin_bottom_footer_post'); ?>
</footer><!--END .entry-footer-->