Server IP : 192.64.118.117 / Your IP : 18.218.145.54 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/tcrgfinancesuite.com/wp-content/themes/tcrgfinancesuite/ |
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