Hi,
How can I remove the Author/Name from all posts?
I tried adding .entry-meta { display: none; } to style.css
and it didn't work.
How can I remove the Author from posts???
Hi,
How can I remove the Author/Name from all posts?
I tried adding .entry-meta { display: none; } to style.css
and it didn't work.
How can I remove the Author from posts???
Hi alifewish
I'm not able to check it right now, but try it with
.author-link { display: none; }
Cheers Stefan
The solution above is probably not the best, because of the separators.
You may delete line no 45-46 in content.php
<span class="sep"> | </span>
<span class="author-link"><i class="icon-user"></i> <?php the_author_link(); ?> </span>
and / or
delete line no 53-54 in content-single.php
<span class="sep"> | </span>
<span class="author-link"><i class="icon-user"></i> <?php the_author_link(); ?></span>
Warning!
If you customize any of the original files, it can be overwritten during a theme update. I recommend you to backup your changes or create a Child Theme.
Cheers Stefan
You must log in to post.