7 lines
250 B
PHP
7 lines
250 B
PHP
<?php
|
|
if ( is_active_sidebar('main-sidebar') ) {
|
|
dynamic_sidebar( 'main-sidebar' );
|
|
} else {
|
|
_e('This is widget area. Go to Appearance -> Widgets to add some widgets.', 'thanhgiang');
|
|
}
|
|
?>
|