Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトル、日付、コメントなどの情報を含まない投稿コンテンツのみを読み込みたい。投稿のみを取得する方法はありますか?
<?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php endif; ?>
単純に置き換えます:
<?php get_template_part( 'content', get_post_format() ); ?>
と:
<?php the_content(); ?>
前者は、 content-status.phpやcontent-aside.phpのようなものを探しています。あるいは、単純な古い「投稿」の場合は、テーマ ルートのcontent.phpを探している可能性が最も高いです。