前提・実現したいこと
wordpressで記事一覧ページにアイキャッチ画像のみを表示させる方法はありますか。
本文は個別ページにのみ表示させたいです。
該当のソースコード
index.php
<div class="entry-content"> <a href="<?php the_permalink(); ?>" ><span class="linkimg"><?php the_post_thumbnail('full'); ?></span></a> </div><?php the_content(); ?>
page.php
<article <?php post_class(); ?>><h1><?php the_title(); ?></h1>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('full'); ?></a>
<?php the_content(); ?> </article>
試したこと
index.phpの<?php the_content(); ?>を消すと、個別ページの本文も消えてしまいます。
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー