我如何在帖子中仅发送subcatogory

时间:2018-04-26 07:03:54

标签: php wordpress post

这是我的代码,我想显示特定类别的子类别

<?php
wp_dropdown_categories('orderby=name&hide_empty=0&exclude=1&hierarchical=1');  
?>

它显示所有类别和子目录但我只想显示特定类别的子类别(子) 请帮帮我。

您的回复对我很有帮助。

2 个答案:

答案 0 :(得分:0)

这是一个例子:

<?php
    $parent_category_id = 12;
    $args = array(
    'orderby'            => 'name',
    'order'              => 'DESC',
    'hide_empty'         => 1,
    'exclude'            => '1',
    'child_of'           => $parent_category_id,
    'hierarchical'       => 1,
    'taxonomy'           => 'category',
    'hide_if_empty'      => false,
);
wp_dropdown_categories( $args ); ?>

这将显示第12类的所有子类别 doc link - here

答案 1 :(得分:0)

$args = array('child_of' => 17);
$categories = get_categories( $args );
foreach($categories as $category) { 
echo '<p>Category: <a href="' . get_category_link( $category->term_id ) .'" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
echo '<p> Description:'. $category->description . '</p>';
echo '<p> Post Count: '. $category->count . '</p>';  
}