Title: Using the plugin
Last modified: August 21, 2016

---

# Using the plugin

 *  [ColoursB](https://wordpress.org/support/users/coloursb/)
 * (@coloursb)
 * [13 years ago](https://wordpress.org/support/topic/using-the-plugin/)
 * Hello,
 *  I may be missing the obvious, but how do you actually use these as shortcodes?
 * [http://wordpress.org/extend/plugins/jquery-ui-theme/](http://wordpress.org/extend/plugins/jquery-ui-theme/)

Viewing 1 replies (of 1 total)

 *  [Jason Wilson](https://wordpress.org/support/users/jjw303/)
 * (@jjw303)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/using-the-plugin/#post-3848760)
 * They are not shortcodes. They are PHP code that you place in the functions.php
   of your theme or you can use them within your custom plugins.
 * Checkout:
    [http://codex.wordpress.org/Function_Reference/wp_enqueue_style](http://codex.wordpress.org/Function_Reference/wp_enqueue_style)
 * Here’s a usage example:
 *     ```
       /**
        * Proper way to enqueue scripts and styles
        */
       function theme_name_scripts() {
           wp_enqueue_style("jquery-ui");
           wp_enqueue_style("jquery-ui-accordion");
       }
   
       add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Using the plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/jquery-ui-theme.svg)
 * [JQuery UI Theme](https://wordpress.org/plugins/jquery-ui-theme/)
 * [Support Threads](https://wordpress.org/support/plugin/jquery-ui-theme/)
 * [Active Topics](https://wordpress.org/support/plugin/jquery-ui-theme/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/jquery-ui-theme/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/jquery-ui-theme/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Jason Wilson](https://wordpress.org/support/users/jjw303/)
 * Last activity: [12 years, 9 months ago](https://wordpress.org/support/topic/using-the-plugin/#post-3848760)
 * Status: not resolved