Rename sidebar to sidebar-1
Matches the parent theme, so widgets should be pre-placed.
This commit is contained in:
parent
6acc6b22a5
commit
91cdf824f2
|
@ -2,15 +2,21 @@
|
||||||
|
|
||||||
wp_enqueue_style( 'style', get_stylesheet_uri() );
|
wp_enqueue_style( 'style', get_stylesheet_uri() );
|
||||||
|
|
||||||
|
// override the widget styles for sidebar-1
|
||||||
|
add_action('after_setup_theme', function () {
|
||||||
|
remove_action( 'widgets_init', 'twentynineteen_widgets_init' );
|
||||||
|
});
|
||||||
|
|
||||||
add_action('widgets_init', function () {
|
add_action('widgets_init', function () {
|
||||||
register_sidebar(
|
register_sidebar(
|
||||||
array(
|
array(
|
||||||
'name' => 'Sidebar',
|
'name' => 'Sidebar',
|
||||||
'id' => 'tw-sidebar',
|
'id' => 'sidebar-1',
|
||||||
'before_title' => '<h2 class="text-4xl font-bold text-gray-800 mt-6 mb-4 tracking-tight">',
|
'before_title' => '<h2 class="text-5xl font-bold mt-6 mb-4 tracking-tight">',
|
||||||
'after_title' => '</h2>',
|
'after_title' => '</h2>',
|
||||||
'before_widget' => '<div class="mt-10 w-1/2 px-6">',
|
'before_widget' => '<div class="mt-10 w-1/2 px-6 text-2xl">',
|
||||||
'after_widget' => '</div>',
|
'after_widget' => '</div>',
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -7,14 +7,14 @@
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ( is_active_sidebar( 'tw-sidebar' ) ) : ?>
|
if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
|
||||||
|
|
||||||
<aside class="widget-area" role="complementary" aria-label="<?php esc_attr_e( 'Footer', 'twentynineteen' ); ?>">
|
<aside class="widget-area" role="complementary" aria-label="<?php esc_attr_e( 'Footer', 'twentynineteen' ); ?>">
|
||||||
<?php
|
<?php
|
||||||
if (is_active_sidebar('tw-sidebar')) {
|
if (is_active_sidebar('sidebar-1')) {
|
||||||
?>
|
?>
|
||||||
<div class="widget flex flex-wrap -mx-6">
|
<div class="widget flex flex-wrap -mx-6">
|
||||||
<?php dynamic_sidebar('tw-sidebar'); ?>
|
<?php dynamic_sidebar('sidebar-1'); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue