-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer-widgets.php
49 lines (41 loc) · 1.54 KB
/
footer-widgets.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
function register_widget_areas() {
register_sidebar( array(
'name' => 'Footer area one',
'id' => 'footer_area_one',
'description' => 'This widget area discription',
'before_widget' => '<section class="footer-area footer-area-one">',
'after_widget' => '</section>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
register_sidebar( array(
'name' => 'Footer area two',
'id' => 'footer_area_two',
'description' => 'This widget area discription',
'before_widget' => '<section class="footer-area footer-area-two">',
'after_widget' => '</section>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
register_sidebar( array(
'name' => 'Footer area three',
'id' => 'footer_area_three',
'description' => 'This widget area discription',
'before_widget' => '<section class="footer-area footer-area-three">',
'after_widget' => '</section>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
register_sidebar( array(
'name' => 'Footer area four',
'id' => 'footer_area_four',
'description' => 'This widget area discription',
'before_widget' => '<section class="footer-area footer-area-three">',
'after_widget' => '</section>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
}
add_action( 'widgets_init', 'register_widget_areas' );
?>