我创建了一个子主题。在父主题中,我发现:
function editorial_scripts() {
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/assets/library/font-awesome/css/font-awesome.min.css', array(), '4.7.0' );
}
add_action( 'wp_enqueue_scripts', 'editorial_scripts' );
我想出列的font-awesome的加载。在儿童主题中,我写道:
function de_script() {
wp_dequeue_script( 'jquery' );
wp_deregister_script( 'jquery' );
// \wp-content\themes\editorial\inc\editorial-functions.php
wp_dequeue_script( 'font-awesome' );
wp_deregister_script( 'font-awesome' );
error_log("here", 0);
}
add_action( 'wp_print_scripts', 'de_script', 100 );
根据错误日志判断,这段代码已经工作。
但是font-awesome仍然在页面上。
我可以尝试什么来解决这个问题?
1条答案
按热度按时间9jyewag01#
您的代码使用了错误的操作。