File: /virtual/yunportfolio/public_html/yunportfolio.shop/wp-content/themes/cocoon-master/sidebar.php
<?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; ?>