在Wordpress主题(狐狸)上隐藏博客帖子作者

时间:2017-01-12 16:58:35

标签: css themes blogs author

在帖子归档页面here

个别帖子页面,例如this

我想隐藏作者,目前说“通过coadmin”,但没有插件我尝试过工作,我找不到任何专门提到作者的CSS行。我可以通过定位.post-info {display:none}来隐藏所有信息,但我只想隐藏作者。

如果我定位作者姓名的特定div,我可以隐藏它,例如:

accept()

但那仍然存在“依旧”。

有没有人有任何建议? Wordpress主题被称为“狐狸”。

2 个答案:

答案 0 :(得分:1)

您可以使用以下CSS:

这隐藏了作者。

.post .post-info a[rel="author"] {
    display: none;
}

这会将剩余的文本向左移动并隐藏" By | "

.post .post-info {
    overflow: hidden;
    text-indent: -3em;
}

答案 1 :(得分:0)

你最好的办法是将php文件改为不渲染。 但是,如果你绝对必须只使用css,那么下面的内容非常繁琐,但是应该这样做:

.post-info{
  margin-left: -40px !important;
}
.post-info a[rel="author"]{
  display: none !important;
}

enter image description here