| Server IP : 162.214.67.83 / Your IP : 216.73.217.9 Web Server : Apache System : Linux dedi-13542965.clustter.com.br 5.14.0-687.20.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jun 30 06:22:49 EDT 2026 x86_64 User : pjacortinas ( 1096) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/pjacortinas/www/wp-content/themes/betheme/ |
Upload File : |
<?php
/**
* The Page Sidebar containing the widget area.
*
* @package Betheme
* @author Muffin group
* @link http://muffingroup.com
*/
$sidebar = false;
// Category -----------------------------------------------
$category = get_query_var( 'portfolio-types' );
$cat_sidebar = 'portfolio-cat-'. $category;
if( is_active_sidebar( $cat_sidebar ) ){
$sidebar = $cat_sidebar;
}
// Blog ---------------------------------------------------
if( ! $sidebar ){
$portfolio_page_id = mfn_opts_get( 'portfolio-page' );
$sidebars = mfn_opts_get( 'sidebars' );
$sidebar = get_post_meta($portfolio_page_id, 'mfn-post-sidebar', true);
$sidebar = $sidebars[$sidebar];
}
?>
<?php if( mfn_sidebar_classes() ): ?>
<div class="sidebar four columns">
<div class="widget-area clearfix <?php mfn_opts_show('sidebar-lines'); ?>">
<?php
if ( ! dynamic_sidebar( $sidebar ) ){
mfn_nosidebar();
}
?>
</div>
</div>
<?php endif;
// Omit Closing PHP Tags