如何在我的wordpress博客中删除我的每个帖子的添加日期/ admin / no评论部分http://www.kvylfm.com
答案 0 :(得分:1)
我不确定,但是在你的主题中检查loop.php ...有一个名为posting_on()的函数; ...删除它并完成...每个东西都有一个函数,找到它,然后删除它:)
答案 1 :(得分:0)
需要删除/注释掉的代码应该在index.php / home.php,page.php和post.php中,但这可能因主题而异。请从你的page.php文件发布循环,然后我可以用更具体的指示更新我的答案。
<强>更新强>
如果没有主题的源代码,这很难搞清楚,但作为替代方案,您可以隐藏这些元素。打开style.css
文件并将这两行粘贴到文件的末尾:
.post-date, .post-info { display: none; }
.post-content { clear: both; }
这应该可以解决问题。
答案 2 :(得分:0)
在single.php和index.php文件中,删除以下行:
<div class="post-info">Posted by <?php the_author() ?> on <?php the_time('F jS, Y') ?> | <?php comments_popup_link('0 comments', '1 comment', '% comments'); ?></div><div style="clear: both;"></div>
希望有所帮助!