How to get all child categories of current parent category in product detail page of woocommerce? [closed]

This is how you display all child terms of a parent term: $term_id = 8; // id of your clothes category $taxonomy_name=”your_taxonomy”; // e.g. ‘category’ $termchildren = get_term_children( $term_id, $taxonomy_name ); if ( !empty($termchildren) ) { foreach ($termchildren as $termchild) { $term = get_term_by( ‘id’, $child, $taxonomy_name ); // Do things } } See https://developer.wordpress.org/reference/functions/get_term_children/

Adding commas between post titles on an archive page?

If you ultimately want the last post, regardless of pages, then you need to use found_posts. This could change depending on how you sort but I didn’t see any modifications to that in your code. So to just modify the content of your code above you would do this: <?php if ( have_posts() ) { … Read more

Show custom category archive as front page and remove taxonomy slug from urls

I was able to solve this by removing CPT UI plugin, registering the custom post type with: function create_post_type() { $args = array ( ‘public’ => true, ‘has_archive’ => true, ‘show_ui’ => true, ‘supports’ => array(‘revision’,’title’,’editor’,’author’, ‘thumbnail’, ‘custom-fields’), ‘taxonomies’ => array( ‘category’ ), ‘labels’ => array( ‘name’ => __( ‘work’ ), ‘singular_name’ => __( ‘work’ … Read more