WordPress:如何覆盖仪表板 CSS

发布于 2024-10-09 00:19:29 字数 81 浏览 4 评论 0原文

您好,我想知道是否有一种简单的方法来覆盖 WordPress 仪表板 CSS 样式?

请帮忙。即使是 jQuery 解决方案也可以。

Hi I was wondering is there an easy way to override the WordPress Dashboard CSS styles?

Please help. Even a jQuery solution will do.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灵芸 2024-10-16 00:19:29

这似乎是一个非常可靠的更改指南: http://codex.wordpress.org/Creating_Admin_Themes

是这就是你的想法?

This seems like a pretty solid guide to altering it: http://codex.wordpress.org/Creating_Admin_Themes

Is this what you had in mind?

杀手六號 2024-10-16 00:19:29

将其插入插件或自定义主题functions.php

add_action( 'admin_head', 'showhiddencustomfields' );

function showhiddencustomfields() {
    echo "<link rel='stylesheet' media='screen,projection' type='text/css' href='your-custom-css-file.css'>";
}

使用开发人员工具栏找出需要添加到自定义CSS 文件中的CSS 规则。

Insert This Into a Plugin or a Custom Theme functions.php

add_action( 'admin_head', 'showhiddencustomfields' );

function showhiddencustomfields() {
    echo "<link rel='stylesheet' media='screen,projection' type='text/css' href='your-custom-css-file.css'>";
}

Use a developer tool bar to figure out which css rule you need to add to your custom css file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文