mirror of
https://github.com/Frumph/comicpress.git
synced 2026-01-31 02:05:17 +01:00
19 lines
804 B
PHP
19 lines
804 B
PHP
<div id="sidebar-left">
|
|
<div class="sidebar">
|
|
<?php
|
|
do_action('comicpress-sidebar-left');
|
|
if ( !dynamic_sidebar('sidebar-left-sidebar') ) { ?>
|
|
<div class="sidebar-no-widgets">
|
|
<?php _e( 'There are currently no widgets assigned to the left-sidebar, place some!', 'comicpress' ); ?>
|
|
<br />
|
|
<br />
|
|
<?php _e( 'Once you add widgets to this sidebar, this default information will go away.', 'comicpress' ); ?>
|
|
<br />
|
|
<br />
|
|
<?php _e( 'Widgets can be added by going to your dashboard (wp-admin) ➔ Appearance ➔ Widgets, drag a widget you want to see into one of the appropriate sidebars.', 'comicpress' ); ?>
|
|
<br />
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|