2019-05-23 12:30:31 -04:00
|
|
|
<?php
|
|
|
|
|
2021-07-02 10:24:48 -04:00
|
|
|
namespace WP_73k;
|
2019-05-23 12:30:31 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register widget area.
|
|
|
|
*/
|
|
|
|
add_action( 'widgets_init', function () {
|
|
|
|
|
2021-07-04 18:16:33 -04:00
|
|
|
register_sidebar( [
|
|
|
|
'name' => esc_html( 'Sidebar' ),
|
|
|
|
'id' => 'sidebar',
|
|
|
|
'description' => '',
|
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
'before_title' => '<h4 class="widget-title">',
|
|
|
|
'after_title' => '</h4>',
|
|
|
|
] );
|
2019-05-23 12:30:31 -04:00
|
|
|
|
|
|
|
} );
|