TimoElshof
Member
Posted 10 months ago #
Hi all,
I have started used WordPress since a few months. I build a website voor my newborn daughter; http://www.sanneelshof.nl I would like to hide post metadata such as author etc. I Googled the whole net but could only find this solution (which does not remove all post metadata): http://wordpress.org/support/topic/theme-blaskan-removing-post-metadata?replies=9
Anybody who can help me?
Best,
Timo
edit loop.php of blaskan;
I would like to hide post metadata such as author
for 'author', remove this section:
<?php if ( get_post_type() !== 'page' ): ?>
<span class="author"><span class="author-label"><?php _e( 'Written by', 'blaskan' ); ?></span> <?php the_author_posts_link(); ?></span>
<?php endif; ?>
to remove 'etc' is a bit more difficult to advise on ...
TimoElshof
Member
Posted 10 months ago #
@alchymyth Thanks for your help!