Include subcategories with the parent category
-
I use the following filter to display Category below the posts on single:
add_filter( 'twentytwenty_post_meta_location_single_bottom', function( $arr ) { if ( is_singular() ) { $arr[] = 'categories'; return $arr; } return array(); } );
Issue: It ONLY display the Main or Parent category. It does not display the subcategories.
Question: Can this filter be modified to include subcategories in it? Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Include subcategories with the parent category’ is closed to new replies.