【Twenty Ten】トップ(固定ページ)に記事タイトルを表示する

WordPressテーマカスタマイズ

投稿記事のタイトルをトップページに表示する場合、page-home.phpに前回の記事で追加したコードの後に以下のコードを追加します。

【前回の追加したコード:page-home.php】

<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
・・・・
<?php endwhile; // end of the loop. ?>

【今回追加するコード:page-home.php】

<?php $my_query = new WP_Query('&cat=0'); ?>  
<?php if ($my_query->have_posts()) : ?>  
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>  
<h2 class=&quot;entry-title&quot;><a href=&quot;<?php the_permalink(); ?>&quot; title=&quot;<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>&quot; rel=&quot;bookmark&quot;><?php the_title(); ?></a></h2> 
<?php endwhile; ?>  
<?php endif; ?>

【変更前】

【変更後】

スポンサーリンク

コメント

タイトルとURLをコピーしました