| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/mscinformatics2022/wp-content/themes/flash/ |
Upload File : |
<?php
/**
* The sidebar containing the left widget area.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Flash
*/
/* Show the sidebar based on selected layout */
$layout = flash_get_layout();
if ( ! is_active_sidebar( 'flash_left_sidebar' ) ) {
return;
}
if($layout == 'left-sidebar') { ?>
<aside id="secondary" class="widget-area" role="complementary">
<?php
/**
* flash_before_sidebar hook
*/
do_action( 'flash_before_sidebar' ); ?>
<?php dynamic_sidebar( 'flash_left_sidebar' ); ?>
<?php
/**
* flash_after_sidebar hook
*/
do_action( 'flash_after_sidebar' ); ?>
</aside><!-- #secondary -->
<?php } ?>