Skip to content

Instantly share code, notes, and snippets.

@rakeshkumar125
Last active June 1, 2016 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rakeshkumar125/c60d2375e2d88679fd26c91ccf4ea5c3 to your computer and use it in GitHub Desktop.
Save rakeshkumar125/c60d2375e2d88679fd26c91ccf4ea5c3 to your computer and use it in GitHub Desktop.
wp_enqueue_style(
'fancyboxstyles',
WP_PLUGIN_URL.'/chat/custom.css',
false,
all);
function my_init() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2', true);
wp_enqueue_script('jquery');
// load a JS file from my theme: js/theme.js
wp_enqueue_script('my_script', WP_PLUGIN_URL.'/chat/chat.js', array('jquery'), '1.0', true);
}
}
add_action('init', 'my_init');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment