Skip to content

Instantly share code, notes, and snippets.

@amandaol
amandaol / dabblet.css
Created December 10, 2013 22:41
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@amandaol
amandaol / wp_MoveJStoBottom
Created December 10, 2013 21:42
Move all JS to bottom of page, in Wordpress
// in functions.php, this moves all scripts to bottom of page
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
add_action('wp_footer', 'wp_print_scripts', 5);
add_action('wp_footer', 'wp_enqueue_scripts', 5);
add_action('wp_footer', 'wp_print_head_scripts', 5);