$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>categories - Get all subcategories and related posts|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

categories - Get all subcategories and related posts

matteradmin10PV0评论

How can I get all subcategories and the posts related to it

 $term = get_queried_object();
    if($term->post_parent !=0 ){ 

    //  echo 'has parent'; //this post category has child
    $term_id = $term->term_id;
    $taxonomy_name = $term->taxonomy;
    $termchildren = get_term_children( $term_id, $taxonomy_name );
     // echo    $postcat ;
     foreach ($termchildren  as $child) {
    $term = get_term_by( 'id', $child, $taxonomy_name );
             ?>
             // get the categories and if have subcategory get it 


             <?php }?>



     <?php   }
     else{
          //the posts in a subcategory 
    while(have_posts()):the_post();
       // get the subcategory posts

<?php endwhile ?>
<?php  }?>

Note: this is a code for custom taxonomy and the code here exist in a file called taxonomy-($taxonomy_name)

How can I get all subcategories and the posts related to it

 $term = get_queried_object();
    if($term->post_parent !=0 ){ 

    //  echo 'has parent'; //this post category has child
    $term_id = $term->term_id;
    $taxonomy_name = $term->taxonomy;
    $termchildren = get_term_children( $term_id, $taxonomy_name );
     // echo    $postcat ;
     foreach ($termchildren  as $child) {
    $term = get_term_by( 'id', $child, $taxonomy_name );
             ?>
             // get the categories and if have subcategory get it 


             <?php }?>



     <?php   }
     else{
          //the posts in a subcategory 
    while(have_posts()):the_post();
       // get the subcategory posts

<?php endwhile ?>
<?php  }?>

Note: this is a code for custom taxonomy and the code here exist in a file called taxonomy-($taxonomy_name)

Share Improve this question edited Jan 2, 2019 at 23:09 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Jan 2, 2019 at 22:52 Nader ElsayedNader Elsayed 1114 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Try using these codes:

if( isset( $sub_category ) ){ 
 echo '<b>more items in: </b>' . $sub_category->name;
 $args = array(
 'cat' => $sub_category->term_id,
 'post__not_in' => array( get_the_ID() )
 );
 $relatedpostsinsubcategory = new WP_Query( $args );
 if( $relatedpostsinsubcategory->have_posts() ){
 while( $relatedpostsinsubcategory->have_posts() ){
 $relatedpostsinsubcategory->the_post();

 ?>
 <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> 
<?php
 }
 wp_reset_postdata();
 }
}

You can find more information about getting subcategories and related posts here.

Post a comment

comment list (0)

  1. No comments so far