-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.php
32 lines (27 loc) · 822 Bytes
/
sidebars.php
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
<?php
add_action( 'widgets_init', 'my_register_sidebars' );
function my_register_sidebars() {
register_sidebar(
array(
'id' => 'header',
'name' => __( 'Header' ),
'description' => __( 'Call to action area above the menu' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
register_sidebar(
array(
'id' => 'sidebar-1',
'name' => __( 'Social' ),
'description' => __( 'Add social icons and contact details' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
}
?>