forked from xserver-inc/cocoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
112 lines (89 loc) · 3.62 KB
/
footer.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
/**
* Cocoon WordPress Theme
* @author: yhira
* @link: https://wp-cocoon.com/
* @license: http://www.gnu.org/licenses/gpl-2.0.html GPL v2 or later
*/
if ( !defined( 'ABSPATH' ) ) exit; ?>
</main>
<?php get_sidebar(); ?>
</div>
</div>
<?php
////////////////////////////
//コンテンツ下部ウィジェット
////////////////////////////
if ( is_active_sidebar( 'content-bottom' ) ) : ?>
<div id="content-bottom" class="content-bottom wwa">
<div id="content-bottom-in" class="content-bottom-in wrap">
<?php dynamic_sidebar( 'content-bottom' ); ?>
</div>
</div>
<?php endif; ?>
<?php //投稿パンくずリストがフッター手前の場合
if ((is_single() || is_category()) && is_single_breadcrumbs_position_footer_before()){
get_template_part('tmp/breadcrumbs');
} ?>
<?php //固定ページパンくずリストがフッター手前の場合
if (is_page() && is_page_breadcrumbs_position_footer_before()){
get_template_part('tmp/breadcrumbs-page');
} ?>
<footer id="footer" class="footer footer-container nwa" itemscope itemtype="https://schema.org/WPFooter">
<div id="footer-in" class="footer-in wrap cf">
<?php //フッターにウィジェットが一つも入っていない時とモバイルの時は表示しない
if ( (is_active_sidebar('footer-left') ||
is_active_sidebar('footer-center') ||
is_active_sidebar('footer-right') ) ): ?>
<div class="footer-widgets cf">
<div class="footer-left">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('footer-left') ) : else : ?>
<?php endif; ?>
</div>
<div class="footer-center">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('footer-center') ) : else : ?>
<?php endif; ?>
</div>
<div class="footer-right">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('footer-right') ) : else : ?>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<?php //モバイルウィジェット
if (is_active_sidebar('footer-mobile')): ?>
<div class="footer-widgets-mobile cf">
<div class="footer-mobile">
<?php dynamic_sidebar('footer-mobile'); ?>
</div>
</div>
<?php endif ?>
<?php //フッターの最下部(フッターメニューやクレジットなど)
get_template_part('tmp/footer-bottom'); ?>
</div>
</footer>
<?php //管理者用パネル
get_template_part('tmp/admin-panel'); ?>
<?php //モバイルヘッダーメニューボタン
get_template_part('tmp/mobile-header-menu-buttons'); ?>
<?php //モバイルフッターメニューボタン
get_template_part('tmp/mobile-footer-menu-buttons'); ?>
<?php //トップへ戻るボタンテンプレート
get_template_part('tmp/button-go-to-top'); ?>
<?php if (!is_amp()) {
//再利用用にフッターコードを取得
//wp_footer()関数では、一度しか出力が行われないようなので事前にグローバル変数に格納しておく
global $_WP_FOOTER;
ob_start();
wp_footer();
$f = ob_get_clean();
echo $f;
$_WP_FOOTER = $f;
} ?>
<?php //フッターで読み込むscriptをまとめたもの
get_template_part('tmp/footer-scripts');?>
</div><!-- #container -->
<?php //barba.js処理
get_template_part('tmp/footer-barba-js');?>
</body>
</html>