You appear to be a bot. Output may be restricted
Description
Enqueue the jQuery UI style fileThis function allows you to specify your own URL for the custom CSS
The jQuery UI custom CSS file delivered with the oik base plugin is quite old; v1.9.2 whereas the latest (as of July 2015) is v1.11 The original file was built using http://jqueryui.com/themeroller
If you want a different theme then you can build a custom file and include this in your theme, or download the jQuery UI themes http://jqueryui.com/download/#!version=1.9.2
Upload the required theme folder and specify the full URL of the jquery-ui.css file e.g. http://qw/wordpress/wp-content/themes/jquery-UI/themes/base/jquery-ui.css
Usage
bw_jquery_enqueue_ui_theme();
Parameters
Returns
voidSource
File name: oik/shortcodes/oik-jquery.phpLines:
1 to 7 of 7
function bw_jquery_enqueue_ui_theme() { $customjQCSS = bw_get_option( 'customjQCSS' ); if ( empty( $customjQCSS ) ) { $customjQCSS = oik_url( "css/jquery-ui-1.9.2.custom.css" ); } wp_enqueue_style( "jquery-ui-theme-css", $customjQCSS ); }View on GitHub View on Trac