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

相關文章
相關標籤/搜索