| Server IP : 68.178.247.200 / Your IP : 216.73.216.14 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/themes/grace-church/ |
Upload File : |
<?php
/**
* The Sidebar Outer containing the outer (left or right) widget areas.
*/
$sidebar_show = grace_church_get_custom_option('show_sidebar_outer');
$sidebar_scheme = grace_church_get_custom_option('sidebar_outer_scheme');
$sidebar_name = grace_church_get_custom_option('sidebar_outer');
if (!grace_church_param_is_off($sidebar_show) && is_active_sidebar($sidebar_name)) {
?>
<div class="sidebar_outer widget_area scheme_<?php echo esc_attr($sidebar_scheme); ?>" role="complementary">
<div class="sidebar_outer_inner widget_area_inner">
<div class="sidebar_outer_logo_wrap">
<?php
if (grace_church_get_custom_option('sidebar_outer_show_logo')=='yes') {
?>
<div class="sidebar_outer_logo">
<?php require( grace_church_get_file_dir('templates/_parts/logo.php') ); ?>
</div>
<?php
}
if (grace_church_get_custom_option('sidebar_outer_show_socials')=='yes') {
?>
<div class="sidebar_outer_socials">
<?php echo grace_church_sc_socials(array('size'=>"tiny", 'shape'=>"round")); ?>
</div>
<?php
}
?>
</div>
<?php
if (grace_church_get_custom_option('sidebar_outer_show_menu')=='yes') {
if (empty($GRACE_CHURCH_GLOBALS['menu_side'])) $GRACE_CHURCH_GLOBALS['menu_side'] = grace_church_get_nav_menu('menu_side');
if (!empty($GRACE_CHURCH_GLOBALS['menu_side'])) {
?>
<div class="sidebar_outer_menu">
<?php echo ($GRACE_CHURCH_GLOBALS['menu_side']); ?>
<span class="sidebar_outer_menu_buttons">
<a href="#" class="sidebar_outer_menu_responsive_button icon-down"><?php esc_html_e('Select menu item', 'grace-church'); ?></a>
<?php if (grace_church_get_custom_option('sidebar_outer_show_widgets')=='yes') { ?>
<a href="#" class="sidebar_outer_widgets_button icon-book-open"></a>
<?php } ?>
</span>
</div>
<?php
}
}
if (grace_church_get_custom_option('sidebar_outer_show_widgets')=='yes') {
?>
<div class="sidebar_outer_widgets">
<?php
ob_start();
do_action( 'before_sidebar' );
global $GRACE_CHURCH_GLOBALS;
$GRACE_CHURCH_GLOBALS['current_sidebar'] = 'outer';
if ( !dynamic_sidebar($sidebar_name) ) {
// Put here html if user no set widgets in sidebar
}
do_action( 'after_sidebar' );
$out = ob_get_contents();
ob_end_clean();
echo trim(chop(preg_replace("/<\/aside>[\r\n\s]*<aside/", "</aside><aside", $out)));
?>
</div> <!-- /.sidebar_outer_widgets -->
<?php
}
?>
</div> <!-- /.sidebar_outer_inner -->
</div> <!-- /.sidebar_outer -->
<?php
}
?>