gpt4 book ai didi

wordpress - 显示子类别并从父类别发布

转载 作者:行者123 更新时间:2023-12-04 17:22:59 25 4
gpt4 key购买 nike

所以我有这个关于 wordpress 内循环的问题。
我的网站结构如下:

  • 父类别 1
    • 第 1 类 child
    • 第 2 类 child
  • 父类别 2
    • 第 1 类 child
    • 第 2 类 child
      • 后 Cat2.1
      • 后 Cat2.2
    • 发布 1
    • 后 2

在这种情况下,“父类别 2”具有子类别和帖子。我需要在“父类别页面”中显示的是子类别及其没有子类别帖子的帖子。
我到处都看过,但似乎我一直在寻找错误,非常感谢任何帮助

最佳答案

我认为这可以帮助:

$cat_id = get_query_var('cat');

if( ! empty( $cat_id ) ) {
$category = get_category( $cat_id, ARRAY_A );

if( ! empty( $category ) ) {
// parent category
if( $category['parent'] === '0' ) {

// get child IDs
$terms = get_term_children( $cat_id, 'category' );

foreach( $terms as $term_id ) {
$child_category = get_term( $term_id, 'category' );

// if you need the category
$category_name = $child_category->name;


/**
* Sample data in your child category object:
*
* object(stdClass)[365]
public 'term_id' => string '14' (length=2)
public 'name' => string 'Child 1' (length=7)
public 'slug' => string 'child-1' (length=7)
public 'term_group' => string '0' (length=1)
public 'term_taxonomy_id' => string '14' (length=2)
public 'taxonomy' => string 'category' (length=8)
public 'description' => string '' (length=0)
public 'parent' => string '12' (length=2)
public 'count' => string '5' (length=1)
public 'object_id' => string '33' (length=2)
*
*
*/

// do whatever you like with the categories now...
}

} else { // in child category
// do the regular loop here, if ( have_posts() ) ...
}
}
}

也发布了Here

希望对你有帮助:)

关于wordpress - 显示子类别并从父类别发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14783918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com