1
我有代碼顯示每個類別(包括子類別)的最新3個帖子,我想從這些子類別中排除帖子,因爲這些帖子已經顯示在父類別中。父類別和子類別帖子
例如,我有一個打印機類別作爲父級和(打印機配件,.....,.....)作爲子類別。
因此,它顯示每個最新的3篇文章,我想排除任何兒童類別(打印機配件,.....,....)及其顯示的帖子。
下面是代碼:建立你的參數數組後
$cat_args = array(
'orderby' => 'name',
'order' => 'ASC',
'child_of' => 0
);
$categories = get_categories($cat_args);
foreach($categories as $category) {
echo '<dl>';
echo '<dt> <a href="' . get_category_link($category->term_id) . '" title="' . sprintf(__("View all items in %s"), $category->name) . '" ' . '>' . $category->name.'</a></dt>';
$post_args = array(
'numberposts' => 3,
'category' => $category->term_id
);
$posts = get_posts($post_args);
foreach($posts as $post) {
?>
<dd>
<div class="allincat">
<div class="catmeta">
<span class="authinfo">
<div class="authimg"></div>
<?php the_author(); ?> | <?php the_time('jS F Y') ?> </span>
</div>
<div class="allincatimg">
<?php the_post_thumbnail(array(50,50)); ?> </div>
<div class="allincattit">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
</div>
</dd>
<?php
}
echo '<div class="view-all"> <a href="' . get_category_link($category->term_id) . '" title="' . sprintf(__("View all items in %s"), $category->name) . '" ' . '>View all items in ' . $category->name.'</a></div>';
echo '</dl>';
}
謝謝你,但,這將通過ID 站點中的每臺父類中定義,但我想自動爲我的所有父類未ID,因爲父類可能會更晚一些。任何解決方案 – dina
使用'$ cat_ID = get_query_var('cat');'動態獲取當前類別ID然後 – anuragbh
請您解釋這個解決方案 – dina