-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontent-footer.php
More file actions
46 lines (29 loc) · 999 Bytes
/
content-footer.php
File metadata and controls
46 lines (29 loc) · 999 Bytes
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
<?php
/**
* The template for displaying post footer meta content
*
* @package Intro
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @since 1.0
*/
?>
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<footer class="entry-footer">
<?php do_action('intro_top_footer_post'); ?>
<?php if(apply_filters('intro_display_post_tags', true)){ ?>
<?php if(has_tag() && is_single()){ ?>
<span class="entry-footer-meta" itemscope="keywords">
<?php echo get_the_tag_list(apply_filters('intro_before_post_tags', ''),' | ',apply_filters('intro_after_post_tags', '')); ?>
</span>
<?php } ?>
<?php } ?>
<?php if(intro_is_paginated_post()){ ?>
<nav>
<?php wp_link_pages(array(
'before'=>'<div class="post-pagination"><span class="page-links-title">'.__('Pages:', 'intro').'</span>',
'after'=>'</div>'
)); ?>
</nav>
<?php } ?>
<?php do_action('intro_bottom_footer_post'); ?>
</footer><!--END .entry-footer-->