gpt4 book ai didi

css - 如何删除应用于 wordpress 仪表板上的 css 规则?

转载 作者:太空宇宙 更新时间:2023-11-03 18:36:37 24 4
gpt4 key购买 nike

如何删除应用于 wordpress 仪表板的 css 规则?我制作了一个主题,并且在仪表板内应用了 css 规则。

在 functions.php 中写下这段代码:

wp_register_style('styles',get_bloginfo('template_url')."/css/styles.css");
wp_register_style('bootstrap',get_bloginfo('template_url')."/css/bootstrap.css");
wp_register_style('bootstrap-responsive',get_bloginfo('template_url')."/css/bootstrap-responsive.css");
wp_enqueue_style('bootstrap');
wp_enqueue_style('bootstrap-responsive');
wp_enqueue_style('styles');

最佳答案

它在管理区域中溢出,因为您需要将所有内容包装在适当的钩子(Hook)中:

add_action( 'wp_enqueue_scripts', 'my_enqueue' );

function my_enqueue()
{
// Register and enqueue CSS and JS here
}

参见:Action_Reference/wp_enqueue_scripts

关于css - 如何删除应用于 wordpress 仪表板上的 css 规则?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18539883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com