Home › Forums › Iconic One Pro Support › How to disable display of author › Reply To: How to disable display of author
September 3, 2013 at 8:56 am #520
Themonic-Support
Keymaster
Hi,
To disable Author, Date and Comments meta bar from single posts remove the following code from content.php
Remove the code starting from line 24 to line 40
<?php if ( is_single() ) : //for date on single page ?>
..
...
..
<?php endif; // display meta-date on single page() ?>
If you just want to remove the author:
Remove the following: it’s line 29 to 31
<span class="author">
<?php echo the_author_posts_link(); ?>
</span>