20 lines
419 B
PHP
20 lines
419 B
PHP
|
<?php
|
||
|
|
||
|
namespace WP_Tailwind;
|
||
|
|
||
|
/**
|
||
|
* Register widget area.
|
||
|
*/
|
||
|
add_action( 'widgets_init', function () {
|
||
|
|
||
|
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>',
|
||
|
] );
|
||
|
|
||
|
} );
|