カテゴリーに属する記事のみを表示する
-
カテゴリーページを開いたときに、カテゴリーの最新記事のみを大きく表示し、それ以外の記事は小さく表示したいのですが、下記コードですと、全てのカテゴリーが表示されてします。
<div id="featured"> <?php if(! $paged || $paged < 2) : ?> <?php if (have_posts()) : ?> <?php query_posts('showposts=1'); while (have_posts()) : the_post(); ?> <a>" title="<?php echo get_the_excerpt(); ?>"><?php the_post_thumbnail('featured-image'); ?></a> <h3><a>"><?php the_title(); ?></a></h3> <div class="featured-cat"><?php the_category(', ') ?></div> <div class="featured-info"> <?php $myExcerpt = get_the_excerpt(); $tags = array("<p>", "</p>"); $myExcerpt = str_replace($tags, "", $myExcerpt); echo $myExcerpt; ?> <a>">Continue Reading</a> </div><!-- /.featured-info --> <?php endwhile;?> <?php wp_reset_query(); ?> <?php endif; ?> <?php endif; ?> </div><!-- /#featured --> <div id="posts"> <?php if(! $paged || $paged < 2) : ?> <?php if (have_posts()) : ?> <?php query_posts('posts_per_page=9&offset=1'); while ( have_posts() ) : the_post(); ?> <?php include("incl/post.php"); ?> <?php endwhile;?> <?php wp_reset_query(); ?> <?php endif; ?> <?php else : ?> <?php if (have_posts()) : ?> <?php while ( have_posts() ) : the_post(); ?> <?php include("incl/post.php"); ?> <?php endwhile;?> <?php wp_reset_query(); ?> <?php endif; ?> <?php endif; ?>
何分、php初心者で、いろいろ検索してみたのですが、うまくいきません。
ご教授いただけますよう、よろしくお願いいたします。。。
4件の返信を表示中 - 1 - 4件目 (全4件中)
4件の返信を表示中 - 1 - 4件目 (全4件中)
- トピック「カテゴリーに属する記事のみを表示する」には新たに返信することはできません。