singleでthe_content()のみ重複
-
質問させて頂きます。
single.phpのthe_content()で取得したコンテンツのみ重複されてしまいます。
Source
———————————————————————————–<?php get_header(); ?>
<div id=”main_container” class=”clearfix”>
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<div class=”entry” id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<h2>“><?php the_title(); ?></h2>
<span class=”eyecatch”><?php the_post_thumbnail(); ?></span>
<p class=”state”>Posted <?php echo get_the_date(); ?><?php the_time(); ?> Category <?php the_category(‘, ‘); ?></p><div class=”entry_main” style=”clear:both;”>
<!–//すべての投稿でこの部分のみ重複されて表示//–>
<?php get_template_part(‘content’,’single’); ?>
<!–//すべての投稿でこの部分のみ重複されて表示//–>
</div><!–entry_main–><!–//pagenation//–>
<div id=”navi” class=”clearfix”>
<span class=”prev_nav”><?php previous_post_link(‘%link’, ‘<< Prev’); ?></span>
<span class=”top_nav”>“>Top</span>
<span class=”next_nav”><?php next_post_link(‘%link’, ‘Next >>’); ?></span>
</div></div><!–entry–>
<?php
//pagelink
get_template_part(‘pagelink’);
?><?php endwhile; else: ?>
<p><?php echo(‘Sorry, no posts.’); ?></p>
<?php endif; ?><?php
comments_template();
?>
</div><!–main_container–><?php get_sidebar(); ?>
<?php get_footer(); ?>
———————————————————————————–二度表示されているので、二回取得しているので、Loopに問題があるのでしょうか?
ご教授お願い致します。
- トピック「singleでthe_content()のみ重複」には新たに返信することはできません。