forked from xserver-inc/cocoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
36 lines (30 loc) · 1.18 KB
/
sidebar.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
<?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;
if ( is_active_sidebar( 'sidebar' ) || is_active_sidebar( 'sidebar-scroll' ) ) : ?>
<div id="sidebar" class="sidebar nwa cf" role="complementary">
<?php //サイドバー上の広告表示
if (is_ad_pos_sidebar_top_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_sidebar_top_format(), 'ad-sidebar-top', is_ad_pos_sidebar_top_label_visible());
}; ?>
<?php dynamic_sidebar( 'sidebar' ); ?>
<?php //サイドバー下の広告表示
if (is_ad_pos_sidebar_bottom_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_sidebar_bottom_format(), 'ad-sidebar-bottom', is_ad_pos_sidebar_bottom_label_visible());
}; ?>
<?php
////////////////////////////
//サイドバー追従領域
////////////////////////////
if ( is_active_sidebar( 'sidebar-scroll' ) ) : ?>
<div id="sidebar-scroll" class="sidebar-scroll">
<?php dynamic_sidebar( 'sidebar-scroll' ); ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>