Comments off Tag
Can you tell me how to remove the comments off tag and post by admin tag off as I dont need this option.
Hi yes of course. You will need to manually edit the theme files, which is not that difficult and you only have to do it once. If you open the relevant files which are:
-Whichever index file your using from the bricks folder
-single.php
-page.php
-archive.php
and find the code that looks like the code below:
<div> Posted by <?php the_author_posts_link () ?> |
Filed under <?php the_category(', ') ?> |
<?php the_time('M j, Y') ?> |
<?php the_tags('Tags: ', ', ', ' | '); ?>
<?php comments_popup_link(' No Comments', ' 1 Comment', ' % Comments'); ?>
</div>
If you want to remove the tags, just delete the line:
<?php the_tags('Tags: ', ', ', ' | '); ?>
If you want to remove the comments remove this:
<?php comments_popup_link(' No Comments', ' 1 Comment', ' % Comments'); ?>
Hope that helps!
One Response to “Comments off Tag”
You must be logged in to post a comment.






Kate:
I was looking for a way to remove the “Comments are closed.” line and did the above. This removed the author information (which I wanted to do), but not the bottom line. To remove that line, I opened the comments.php and removed just that text (between the >Comments are closed.<) leaving everything else.
Thanks for the great theme!