我目前正在制作wordpress主题,我的页面有一点问题。
wpadminbar元素未设置其样式。我不知道为什么会这样,但确实如此。
屏幕截图:
答案 0 :(得分:5)
我遇到了同样的问题并将其添加到标题模板中:
<?php
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?></head>
答案 1 :(得分:3)
您是否使用Firebug(Firefox插件)进行了调试?您的网页加载了哪些样式?
从截图中看,这个有点难以解决。
首先猜测:您忘记在主题标题中添加指向主WP CSS(称为admin-bar.css)的链接。
答案 2 :(得分:1)
您是否尝试过使用firebug来查找CSS文件的位置?如果它在服务器上,那么是时候在CSS中缩小它了。
答案 3 :(得分:0)
检查您是否有wp_deregister_style(&#39; open-sans&#39;);在你的主题中它可能是这个的原因!