Función php para mover automáticamente al footer el archivo jQuery que por defecto lo carga dentro del head.php.

Inserta el siguiente código php dentro del functions.php de tu theme WordPress:

if (!is_admin()) add_action('wp_enqueue_scripts', 'jquery_footer');
function jquery_footer() {
	wp_deregister_script( 'jquery' );
	wp_register_script( 'jquery', includes_url( '/js/jquery/jquery.js' ), false, NULL, true );
	wp_enqueue_script( 'jquery' );
}

Agradezco tu comentario 🤘