forked from yutianhot/zibll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tag.php
39 lines (39 loc) · 1.02 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
<?php get_header(); ?>
<?php if (function_exists('dynamic_sidebar')) {
echo '<div class="container fluid-widget">';
dynamic_sidebar('all_top_fluid');
dynamic_sidebar('cat_top_fluid');
echo '</div>';
}
?>
<main role="main" class="container">
<div class="content-wrap">
<div class="content-layout">
<?php if (function_exists('dynamic_sidebar')) {
dynamic_sidebar('tag_top_content');
}
?>
<?php
zib_tag_cover();
echo '<div class="ajaxpager">';
zib_option_cat(_pz('option_list_tag_cat', true),_pz('option_list_tag_top', true),_pz('option_list_tag_tag', true));
get_template_part('template/excerpt');
zib_paging();
echo '</div>';
?>
<?php if (function_exists('dynamic_sidebar')) {
dynamic_sidebar('tag_bottom_content');
}
?>
</div>
</div>
<?php get_sidebar(); ?>
</main>
<?php if (function_exists('dynamic_sidebar')) {
echo '<div class="container fluid-widget">';
dynamic_sidebar('tag_bottom_fluid');
dynamic_sidebar('all_bottom_fluid');
echo '</div>';
}
?>
<?php get_footer(); ?>