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

17 lines
424 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
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' => 'tw-sidebar',
2019-03-28 08:44:50 +00:00
'before_title' => '<h2 class="text-4xl font-bold text-gray-800 mt-6 mb-4 tracking-tight">',
2019-03-27 18:21:37 +00:00
'after_title' => '</h2>',
2019-03-28 08:52:17 +00:00
'before_widget' => '<div class="mt-10 w-1/2 px-6">',
2019-03-27 18:21:37 +00:00
'after_widget' => '</div>',
)
);
2019-03-28 08:44:50 +00:00
});