wordpress/php-fpm/wordpress_files/themes/retropress/sidebar-left.php

9 lines
352 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php global $SMTheme; ?>
<?php if ( in_array($SMTheme->layout, array(4,3,6) ) ) $style=" style='float:left'"; else $style='';?>
<div class='sidebar left clearfix'<?php echo $style;?>>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Left Sidebar") ) : ?>
<?php
$SMTheme->go_func('left_sidebar');
?>
<?php endif; ?>
</div>