I want to use the datepicker that gets bundled with WordPress on the front end of a website. I enqueued jquery-ui-datepicker
but the datepicker isn’t styled(no js error in console). Is there a corresponding wp_enqueue_style
for that?
I used this code in functions.php
function rr_scripts() {
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'jquery-ui-datepicker', array( 'jquery' ) );
wp_register_style( 'bootstrap_css', get_template_directory_uri() . '/assets/css/bootstrap.min.css' );
wp_enqueue_style( 'bootstrap_css' ); # I'm using Twitter Bootstrap as CSS(if it matters)
}
add_action( 'wp_enqueue_scripts', 'rr_scripts' );