我对WordPress很新。从哪个文件发布发布日期和作者显示?
我们如何向他们添加自己的CSS。我们如何隐藏它们
Posts Date & Author Click here for the image
先谢谢。
答案 0 :(得分:0)
试试这个。如果你使用的是WordPress默认主题,它在wp-content / themes / default / index.php中有一个the_author的例子,但代码是“注释掉的”#39;所以它没有执行。因此,如果您想使用WordPress默认主题显示作者信息,您将更改wp-content / theme / default / index.php中的行
来自:
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
到
<small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?> </small>
请注意使用模板标记the_author_posts_link(),这会使作者的姓名显示为他/她帖子的链接。
这也演示了模板标签the_time(),它显示了日期。
答案 1 :(得分:0)
你可以使用plugin 或者你可以通过css隐藏
.entry-author-link { display: none; }
.entry-permalink { display: none; }
.entry-date { display: none; }
.entry-meta { display: none; }