wordcamp-bristol-2019/wp-content/themes/twentynineteen-tailwindcss/functions.php
2019-06-16 00:39:20 +01:00

29 lines
866 B
PHP

<?php
wp_enqueue_style( 'style', get_stylesheet_uri() );
// override the widget styles for sidebar-1
add_action('after_setup_theme', function () {
register_nav_menus(
array(
'menu-1' => __( 'Primary', 'twentynineteen_tailwindcss' ),
'footer' => __( 'Footer Menu', 'twentynineteen_tailwindcss' ),
'social' => __( 'Social Links Menu', 'twentynineteen_tailwindcss' ),
)
);
remove_action( 'widgets_init', 'twentynineteen_widgets_init' );
});
add_action('widgets_init', function () {
register_sidebar(
array(
'name' => 'Sidebar',
'id' => 'sidebar-1',
'before_title' => '<h2 class="mt-6 mb-4 text-2xl font-bold tracking-tight md:text-5xl">',
'after_title' => '</h2>',
'before_widget' => '<div class="w-full mt-10 px-6 text-2xl md:w-1/2">',
'after_widget' => '</div>',
)
);
});