所以,我使用wp_enqueue_style在一个函数中添加两个css文件,但是问题是当我调用一个类时,唯一能添加的是来自其中一个文件的类,这个类就像覆盖另一个类一样。
下面是我的代码:
<a class="navbar-brand py-2 anti-white" href="<?= esc_url(home_url('/')); ?>">TES</a>
<!-- anti-white is from style.css and can't be used -->
function add_theme_scripts()
{
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_style('bootstrap.min.css', get_template_directory_uri() . '/assets/css/framework/bootstrap/css/bootstrap.min.css', array( 'style'), '1.7', 'all');
wp_enqueue_script('bootstrap.bundle.min.js', get_template_directory_uri() . '/assets/css/framework/bootstrap/js/bootstrap.bundle.min.js', array('jquery'), 1.1, true);
}
add_action('wp_enqueue_scripts', 'add_theme_scripts');
1条答案
按热度按时间y4ekin9u1#
通过在css中添加!important解决