-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsidebar-left.php
More file actions
42 lines (32 loc) · 904 Bytes
/
sidebar-left.php
File metadata and controls
42 lines (32 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Notice for Sidebar left
* by Philip M. Hofer (Frumph)
* http://frumph.net/
*
* Content for Notice for Sidebar left
*
* @package Comicpress
*/
?>
<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 esc_html_e( 'There are currently no widgets assigned to the left-sidebar, place some!', 'comicpress' ); ?>
<br />
<br />
<?php esc_html_e( 'Once you add widgets to this sidebar, this default information will go away.', 'comicpress' ); ?>
<br />
<br />
<?php esc_html_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>