mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
9 lines
335 B
PHP
9 lines
335 B
PHP
<?php global $SMTheme; ?>
|
|
<?php if ( $SMTheme->layout == 6 ) $style=" style='float:left'"; else $style='';?>
|
|
<div class='sidebar right clearfix'<?php echo $style;?>>
|
|
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Right Sidebar") ) : ?>
|
|
<?php
|
|
$SMTheme->go_func('right_sidebar');
|
|
?>
|
|
<?php endif; ?>
|
|
</div>
|