IT服務(wù)網(wǎng)
wordpress移除astra主題的head內(nèi)聯(lián)css代碼1
wordpress移除astra主題的head內(nèi)聯(lián)css代碼 在主題的function文件里面加入以下代碼 function astra_force_remove_style() { wp_dequeue_style( 'astra-theme-css' ); wp_dequeue_style( 'astra-addon-css' ); } add_action( 'wp_enqueue_scripts', 'astra_force_remove_style', 99 ); |
|