如果在呈现页面时将脚本排入页脚(在“wp\\u head”挂钩之后),则必须手动将wp\\u print\\u脚本(或wp\\u print\\u footer\\u脚本)添加到wp\\u footer操作,如下所示:
wp_enqueue_script( \'jquery-gallery\', null, array( \'jquery\' ), null, true );
add_action( \'wp_footer\', create_function( \'\', \'wp_print_scripts( "jquery-gallery" );\' ) );