Lưu ý: Bạn cần thay đoạn: “destinations” thành taxonomy bạn cần show
Copy Function bỏ vào trong Theme bạn đang dùng và dùng Shortcode [show_danhmuc] để chèn vào khu vực cần hiển thị.
// Function để hiển thị các điểm đến trong một danh mục cha và thêm link, bao gồm cả danh mục trống //
function show_danhmuc($atts) {
$atts = shortcode_atts(
array(
'taxonomy' => 'destinations',
),
$atts,
'show_danhmuc'
);
$term = get_queried_object();
if ($term->parent != 0) {
$parent_id = $term->parent;
} else {
$parent_id = $term->term_id;
}
$child_terms_args = array(
'taxonomy' => $atts['taxonomy'],
'parent' => $parent_id,
);
// Lấy cả danh mục trống
$child_terms = get_terms($child_terms_args);
// Nếu không có danh mục con, lấy tất cả các term của parent
if (empty($child_terms)) {
$child_terms_args['hide_empty'] = false;
$child_terms = get_terms($child_terms_args);
}
$output = '<ul>';
foreach ($child_terms as $term) {
$term_link = get_term_link($term);
$output .= '<li><a href="' . $term_link . '">' . $term->name . '</a></li>';
}
$output .= '</ul>';
return $output;
}
add_shortcode('show_danhmuc', 'show_danhmuc');