mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
1 line
263 B
PHP
1 line
263 B
PHP
<?php
|
|
global $SMTheme, $post;
|
|
|
|
if ( !in_array($SMTheme->layout, array(1,3,6) ) )
|
|
get_sidebar('right');
|
|
if ( !in_array($SMTheme->layout, array(1,2) ) )
|
|
get_sidebar('left');
|
|
if ( $SMTheme->layout == 6 ) {
|
|
get_sidebar('right');
|
|
}
|
|
?>
|
|
|