Removing posted by and date from posts on wordpress
How do I remove the date added/admin/no comments section of 开发者_JS百科each one of my posts in my wordpress blog here http://www.kvylfm.com
Edit your template file index.php
and look for this snippet:
<div class="post-info clear-block with-thumbs">
when you found it, it would be something like this:
<div class="post-info clear-block with-thumbs">
<p class="author alignleft">Posted by .........</p>
<p class="comments alignright">.........</p>
</div>
Just remove it all.
If you don't know what template it is, on admin panel, look at Appearance
» Editor
.
You should see list of files on right side of that page. Just find 'Main Index Template'
and edit it, look at snippet above then remove it.
精彩评论