Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

custom_footer

// Register Script
function custom_footer() {

	wp_register_script( 'custom_footer', '', false, false, true );
	wp_enqueue_script( 'custom_footer' );

}
add_action( 'wp_enqueue_scripts', 'custom_footer' );