If you already have alot of entries in which you want to remove the comments link from, you can do it all in one shot instead of going through them all in your admin panel and disallowing comments for each post.
If you’re using WordPress 2.0 or up look for your post.php page which will be in your theme folder, i.e wp-content/themes/classic for example. When you open up post.php you’ll notice in the post footer there is a bit of code that starts out with comments_popup_links this will be followed by some other code similiar to
('comments')__ ('comments (1)')__ ('comments %')')), something along those lines, sorry I’m doing this from memory. You’ll know when you see it, just delete that out of the post footer section and you’re all set, save and upload post.php and check out your site, all the comments links for each and every post should be gone. If your actual post is clicked on, under single post view someone would still be able to leave comments, what I’ve listed above will only remove the actual comments link from the post footer that shows up under your posts.
The theme I’m using doesn’t have a post.php, but there’s something similar to what you’re talking about in the index.php file.
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
Is it safe to remove that?
Okay, I see what you’re saying. So if you have something similiar to this:
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
Go ahead and delete just the comments part of the code, save, reload it and test the site. That should work in your themes.