wordcamp-bristol-2019/wp-content/themes/twentynineteen-tailwindcss/functions.php

29 lines
866 B
PHP
Raw Normal View History

2019-03-17 22:50:58 +00:00
<?php
wp_enqueue_style( 'style', get_stylesheet_uri() );
2019-03-27 18:21:37 +00:00
// override the widget styles for sidebar-1
add_action('after_setup_theme', function () {
2019-05-08 19:56:12 +00:00
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' );
});
2019-03-28 08:44:50 +00:00
add_action('widgets_init', function () {
2019-03-27 18:21:37 +00:00
register_sidebar(
array(
'name' => 'Sidebar',
'id' => 'sidebar-1',
2019-05-08 20:35:08 +00:00
'before_title' => '<h2 class="text-2xl md:text-5xl font-bold mt-6 mb-4 tracking-tight">',
2019-03-27 18:21:37 +00:00
'after_title' => '</h2>',
2019-04-17 15:36:00 +00:00
'before_widget' => '<div class="mt-10 w-full md:w-1/2 px-6 text-2xl">',
2019-03-27 18:21:37 +00:00
'after_widget' => '</div>',
)
);
2019-03-28 08:44:50 +00:00
});