wordpress 阻止自带jquery

if ( !is_admin() ) { // 后台不用 if ( $localhost == 0 ) { // 本地调试不用 function my_init_method() { wp_deregister_script( 'jquery' ); // 取消原有的 jquery 定义 } add_action('init', 'my_init_method'); // 加入功能, 前台使用 wp_enqueue_script( '名称' ) 加載 } } wp_deregister_script( 'l10n' );jquery

相关文章
相关标签/搜索