wp_enqueue_script('jquery-effects-shake');
..doesn't seem to work, no matter where I put it. I've tried the following and lots of googling:
function my_callback() {
wp_enqueue_script('jquery-effects-shake');
}
add_action('wp_enqueue_scripts', 'my_callback');
and
<?php
wp_enqueue_script('jquery-effects-shake');
get_header();
?>
Thanks!
wp_headandwp_footerfunction calls? You said it's not loading in<head>, does that mean it's loading somewhere else or not at all?