mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
9 lines
352 B
PHP
9 lines
352 B
PHP
|
<?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>
|