php - Argument for if term-> have child?

I am using the code off this page: However my Custom taxonomy has more depth for cities, state, country. I need "i

I am using the code off this page: /

However my Custom taxonomy has more depth for cities, state, country.

I need "if ($term->parent == 0)" to search for if term has child, then do this, else then do this. Right now, parent taxonomy displays it's parent children, but I need parent taxonomy display it's children taxonomies and children taxonomy displays parents children. In essence both parent and child taxonomies would display the same cities if you understand what I mean on their respective pages.

So you goto Michigan page(parent), it displays Boston, Detroit, Grand Rapids etc. If you goto Boston page(child), it would still display Boston, Detroit, Grand Rapids etc. because there are no more children.

<?php 
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); 
if ($term->parent == 0) {  
wp_list_categories('taxonomy=YOUR-TAXONOMY-NAME&depth=1&show_count=0
&title_li=&child_of=' . $term->term_id);
} else {
wp_list_categories('taxonomy=YOUR-TAXONOMY-NAME&show_count=0
&title_li=&child_of=' . $term->parent);  
}
?>

I am using the code off this page: https://www.wpbeginner/wp-tutorials/how-to-display-child-taxonomy-on-parent-taxonomys-archive-page/

However my Custom taxonomy has more depth for cities, state, country.

I need "if ($term->parent == 0)" to search for if term has child, then do this, else then do this. Right now, parent taxonomy displays it's parent children, but I need parent taxonomy display it's children taxonomies and children taxonomy displays parents children. In essence both parent and child taxonomies would display the same cities if you understand what I mean on their respective pages.

So you goto Michigan page(parent), it displays Boston, Detroit, Grand Rapids etc. If you goto Boston page(child), it would still display Boston, Detroit, Grand Rapids etc. because there are no more children.

<?php 
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); 
if ($term->parent == 0) {  
wp_list_categories('taxonomy=YOUR-TAXONOMY-NAME&depth=1&show_count=0
&title_li=&child_of=' . $term->term_id);
} else {
wp_list_categories('taxonomy=YOUR-TAXONOMY-NAME&show_count=0
&title_li=&child_of=' . $term->parent);  
}
?>
Share Improve this question asked Apr 4, 2019 at 0:05 Joe LandryJoe Landry 277 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use get_term_children() to check if a specific term has any children, and if yes, display the children; otherwise, display the parent's children.

So just change the if ($term->parent == 0) { to:

$children = get_term_children( $term->term_id, $term->taxonomy );
if ( ! is_wp_error( $children ) && ! empty( $children ) ) {

Or here's the full code I used:

$term = get_queried_object();
$children = get_term_children( $term->term_id, $term->taxonomy );
if ( ! is_wp_error( $children ) && ! empty( $children ) ) {
    wp_list_categories( 'taxonomy=' . $term->taxonomy . '&depth=1&show_count=0&title_li=&child_of=' . $term->term_id );
} else {
    wp_list_categories( 'taxonomy=' . $term->taxonomy . '&depth=1&show_count=0&title_li=&child_of=' . $term->parent );
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745630124a4637053.html

相关推荐

  • php - Argument for if term-&gt; have child?

    I am using the code off this page: However my Custom taxonomy has more depth for cities, state, country. I need "i

    4小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信