Advertisement
5ally

Enqueue jQuery UI CSS Files

Feb 6th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. function theme_enqueue_styles() {
  3.     // Enqueue jQuery UI themed styles.
  4.     wp_enqueue_style( 'jquery-ui-redmond-core', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/redmond/jquery-ui.min.css', array(), null );
  5.     wp_enqueue_style( 'jquery-ui-redmond-theme', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/redmond/theme.min.css', array(), null );
  6. }
  7. add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement