我尝试在wordpress的4.0版中使用下面的代码,但您无法加载您只希望加载特定页面的文件。有没有其他代码可以做到这一点?
所讨论的插件是多列标记映射
function wpa_scripts() {
// if this is not the contact page, remove the script
if( ! is_page( \'\' ) ){
wp_dequeue_script(\'\');
}
}
// adjust priority to make sure this runs after the plugins add their scripts/styles
add_action( \'wp_enqueue_scripts\', \'wpa_scripts\', 100 );