-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.php
50 lines (29 loc) · 960 Bytes
/
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
50
<?php
namespace mikuclub;
use mikuclub\constant\Admin_Meta;
use function mikuclub\print_breadcrumbs_component;
use function mikuclub\get_theme_option;
get_header(); ?>
<?php
$breadcrumbs = print_breadcrumbs_component();
$ad_banner = '';
if (get_theme_option(Admin_Meta::CATEGORY_TOP_ADSENSE_ENABLE))
{
$ad_banner = '<div class="pop-banner text-center my-2 pb-2 border-bottom">' . get_theme_option(Admin_Meta::CATEGORY_TOP_ADSENSE) . '</div>';
}
$post_list_header_order = print_post_list_header_order();
$post_list_header_download_type = print_post_list_header_download_type();
$post_list_header_user_black_list = print_post_list_header_user_black_list();
$post_list_component = print_post_list_component();
$output = <<<HTML
{$breadcrumbs}
{$ad_banner}
{$post_list_header_order}
{$post_list_header_download_type}
{$post_list_header_user_black_list}
{$post_list_component}
HTML;
echo $output;
//get_sidebar();
get_footer();
?>