0
親カテゴリタイトル、サブカテゴリタイトル、および各サブカテゴリのすべての投稿を表示するカテゴリテンプレートを作成したいと考えています。Wordpress Template - 親カテゴリのすべての投稿をサブカテゴリで区切って表示する
だから、この
親 サブカテゴリ ポスト#1 ポスト#2 サブカテゴリ ポスト#3 ポスト#ここで4
ようになり、私がこれまで持っているものですが、私はこだわっていますどのように前進するか。お使いのカテゴリテンプレート内
function display_category_posts($cat_id) {
echo get_cat_name($cat_id);
$the_query = new WP_Query(array('cat' => $cat_id));
// you loop code
wp_reset_query(); //or wp_reset_postdata(), not put it in have_posts() block, we should always reset query even there no posts found.
}
あなたのテーマのfunctions.phpで
<?php if (have_posts()) : ?>
<div class="section-header">
<h1 class="page-title"><?php single_cat_title(''); ?></h1>
<!-- <?php
the_archive_title('<h1 class="page-title">', '</h1>');
the_archive_description('<div class="taxonomy-description">', '</div>');
?> -->
</header><!-- .page-header -->
<p>Some text</p>
<?php
// The Query
$the_query = new WP_Query(array('cat' => 72));
// The Loop
if ($the_query->have_posts()) {
echo '<ul>';
while ($the_query->have_posts()) {
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}
?>
<?php else : ?>
<?php ?>
<?php endif; ?>
ありがとうございましたが、これは私に次のようなエラー「警告を与える:不正がISSETかに空にタイプをオフセット/homepages/9/d389995387/htdocs/marketsquaresj/wp-includes/class-wp-term-query.php on line 376「私が提供したコードにカテゴリテンプレートコードを挿入する場所を教えてください再現する何か? – user1488639
申し訳ありませんが、私の間違いです。 'object_id'でなく、' object'でなければなりません。コードを更新して、もう一度やり直してください。 – Cl0udSt0ne
それは感謝したそれはありがとう! – user1488639