カテゴリーページ
-
カテゴリーcategory.phpのデザインを変更したく、
特定のカテゴリーをcategory(A)phpで下記で設定したのですが、
A,Bと違うカテゴリーでもカテゴリーが分かれて表示してくれません…。
どうしたらいいでしょうか?★category.phpには下記記述★
<?php
if ( in_category(‘A’) ) {
include(TEMPLATEPATH . ‘/category-A.php’);
} else if ( in_category(‘B’) ) {
include(TEMPLATEPATH . ‘/category-B.php’);
} else {
include(TEMPLATEPATH . ‘/category.php’);
}
?>★category-A.phpに記述★
get_header(); ?><div class=”container newsWrapper”>
<?php if (have_posts()) : ?>
<div id=”post-area”><?php query_posts(‘showposts=20’); ?>
<?php if(have_posts()): while(have_posts()): the_post();?><?php endwhile; endif; ?>
<?php while (have_posts()) : the_post(); ?><div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) { ?>
<div class=”pinbin-image”>“><?php the_post_thumbnail( ‘summary-image’ ); ?></div>
<div class=”pinbin-category”><p><?php the_category(‘, ‘) ?></p></div><?php } ?>
<div class=”pinbin-copy”><h2>“><?php the_title(); ?></h2>
<p class=”pinbin-date”><?php the_time(get_option(‘date_format’)); ?> </p><?php the_excerpt(); ?>
<p class=”pinbin-link”>“>→</p>
</div>
</div><?php endwhile; ?>
</div>
<?php else : ?><article id=”post-0″ class=”post no-results not-found”>
<header class=”entry-header”>
<h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘pinbin’ ); ?></h1>
</header><!– .entry-header –><div class=”entry-content”>
<p><?php _e( ‘Sorry, but nothing matched your search terms. Please try again with some different keywords.’, ‘pinbin’ ); ?></p>
<?php get_search_form(); ?>
</div><!– .entry-content –>
</article><!– #post-0 –><?php endif; ?>
<?php if (function_exists(“pagination”)) {
pagination($additional_loop->max_num_pages);
} ?></div>
<?php get_footer(); ?>
- トピック「カテゴリーページ」には新たに返信することはできません。