カテゴリー表示がうまくいかない
-
お世話になります。
トップページ、記事一覧ページにて以下のコードでカテゴリー付き(色変更)記事一覧を取得したいのですが、うまくいきません。
トップページでは全てのカテゴリーが同じになってしまい、記事一覧ページではカテゴリー名すら表示されません。
コードはネットより拝借致しました。
https://www.magical-remix.co.jp/magicalog/archives/2983
<?php query_posts("post_type=post&posts_per_page=6"); ?>
<?php
$cat = get_the_category();
$catname = $cat[0]->cat_name;
$catslug = $cat[0]->slug;
?>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<div class="business-contents-item animate from-bottom">
<div class="business-contents-img"><a href="<?php the_permalink(); ?>"><?php if (has_post_thumbnail()) { the_post_thumbnail();} ?></a></div>
<div class="business-contents-data">
<span class="business-cat-tips <?php echo $catslug; ?>"><?php echo $catname; ?></span>
<span class="business-cat-data"><?php the_time('Y年m月d日'); ?></span>
</div>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
</div>
<?php endwhile; ?>
<?php else: ?>
<p>現在表示できる実績はありません。</p>
<?php endif; ?>ご教授いただけますと幸いです。
5件の返信を表示中 - 1 - 5件目 (全5件中)
5件の返信を表示中 - 1 - 5件目 (全5件中)
- このトピックに返信するにはログインが必要です。