-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
39 lines (34 loc) · 829 Bytes
/
Copy pathsidebar.php
File metadata and controls
39 lines (34 loc) · 829 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
<?php
/**
* The Sidebar containing the main widget areas.
*
* @package BlogPress
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<div <?php blogpress_do_attr( 'right-sidebar' ); ?>>
<div class="inside-right-sidebar">
<?php
blogpress_add_navigation_before_right_sidebar();
/**
* Fires inside the right sidebar, before its widgets.
*
* @since 1.0.0
*
* @param string $sidebar_id The widget area ID being output.
*/
do_action( 'blogpress_before_right_sidebar_content', 'sidebar-1' );
dynamic_sidebar( 'sidebar-1' );
/**
* Fires inside the right sidebar, after its widgets.
*
* @since 1.0.0
*
* @param string $sidebar_id The widget area ID being output.
*/
do_action( 'blogpress_after_right_sidebar_content', 'sidebar-1' );
?>
</div>
</div>