0byt3m1n1
Path:
/
data
/
27
/
5
/
48
/
71
/
5374886
/
user
/
6435255
/
htdocs
/
wp-content
/
themes
/
business-way
/
[
Home
]
File: sidebar.php
<?php /** * The sidebar containing the main widget area * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Canyon Themes * @subpackage Business Way */ $sidebar_design_layout = business_way_get_option( 'business_way_sidebar_layout_option' ); if( is_singular() ) { $single_design_layout = get_post_meta( get_the_ID(), 'business_way_sidebar_layout', true ); $sidebar_design_layout = $single_design_layout; } if ( ! is_active_sidebar( 'sidebar-1' ) || 'no-sidebar' == $sidebar_design_layout ) { return; } ?> <aside id="secondary" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'sidebar-1' ); ?> </aside><!-- #secondary -->