Categories

Thursday, April 25, 2024
#919814419350 therichposts@gmail.com
WoocommerceWordpress TricksWp Tricks

WordPress trick to check term id has parent term or child term

Wordpress trick to check term id has parent term or child term

Hello to all, welcome to therichpost.com. In this post, I will tell you, WordPress trick to check term id has parent term or child term.

Post Working:

In this post, on archive page, with my code, I am checking woocommerce category has parent category or child category.

Here is the working code and you need add this into your theme’s archive.php page:

<?php 
$obj = get_queried_object();
$term_id = $obj->term_id; 

$child_term = get_term( $term_id, 'product_cat' );
$parent_term = get_term( $child_term->parent, 'product_cat' );
if($parent_term->term_id){
 // Parent category code
}

if($child_term->term_id){
 // Child category code
}

?>

 

If you have any query related to this post then please let me know.

Jassa

Thank you

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.