特定カテゴリ記事の表示
-
現在利用しているテーマでは
トップページで公開する内容が、全ての記事が公開されてしまいます。
そこで、
カテゴリIDの1だけ
もしくは
カテゴリIDの1、2だけ
公開させたいのですが、どの部分をどのように修正すれば良いのでしょうか?
初歩的な質問で申し訳ございませんが
宜しくお願いいたします。<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id=”post-<?php the_ID(); ?>”><div class=”indent”>
<div class=”title”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<div class=”date”>
<?php the_time(‘F j, Y’) ?>
</div></div>
<div class=”text-box”>
<?php the_content(”); ?>
</div>
<div class=”more-link”>
#more-<?php the_id() ?>”>more
</div><div class=”postmetadata”><?php the_tags(‘Tags: ‘, ‘, ‘, ‘
‘); ?></div></div>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘ Older Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Newer Entries’) ?></div>
</div><?php else : ?>
<h2 class=”pagetitle”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p><?php get_search_form(); ?>
<?php endif; ?>
- トピック「特定カテゴリ記事の表示」には新たに返信することはできません。