ワードプレスの投稿記事に「コメントを受け付けていません。」表示されているのを消したい場合に大抵は以下のファイルに
1.スタイルシート (style.css)
2.コメント (comments.php)
---------------------------------
.common-contents.no-comments{
display:none;
}
---------------------------------
.post_meta , #commentsbox {
display: none;
}
---------------------------------
.no-comments {
display: none;
---------------------------------
以上の3つをそれぞれ試すか(最終行に挿入) またはプラグインの
Remove All Comments を試して解決すれば一番楽ですよね。
プラグインで解決できるならCSSをいじるよりプラグインのほうが良いと思います。
※使用スタイルシート Mumrik
■それでも「コメントを受け付けていません」を消せない場合は私の場合は
index.php の中の
---------------------------------------------------------------------
<?php get_header();?>
<div id="Content">
<?php include('navigation.php'); ?>
<div id="MainContent">
<?php while (have_posts()) : the_post(); ?>
<div class="Post clearfix">
<div class="PostInfo"><!-- <span class="comments"><?php comments_popup_link(__('No Comments', 'Mumrik'), __('1 Comment', 'NeeWee'), __('% Comments', 'Mumrik')); ?></span> --><span class="author">By <?php the_author() ?> on <?php the_time('F jS, Y') ?></span></div>
<h3><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="PostInfo"><em><?php _e('BLOGカテゴリー', 'Mumrik');?>: <?php the_category(', ') ?><?php the_tags(__(', Tags', 'Mumrik') . ': ', ', ') ?></em></div>
<?php if(!is_search() && !is_archive()) {??>
<div class="PostContent">
<?php the_content('続きを読む »'); ?>
</div>
<?php } ?>
</div>
<hr/>
<?php comments_template(); ?>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« ' . __('Previous Entries', 'Mumrik')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Next Entries', 'Mumrik') . ' »') ?></div>
</div>
</div>
<?php get_sidebar();?>
</div>
<?php get_footer(); ?>
---------------------------------------------------------------------
赤字の部分
<!-- <span class="comments"><?php comments_popup_link(__('No Comments', 'Mumrik'), __('1 Comment', 'NeeWee'), __('% Comments', 'Mumrik')); ?></span> -->
をコメントアウトで表示しなくなりました。
参考程度に。