dichvuwebvnn.com chuyên thiết kế website bằng wordpress hướng dẫn lấy danh mục sản phẩm đơn giản, dễ hiểu.
<?php
$name_terms = "danhmuc_happiweb";
$args = array(
'orderby' => 'ordering',
'order' => 'ASC',
'hide_empty' => 0,
'fields' => 'all',
'parent' => '0',
'hierarchical' => true,
'child_of' => 0,
);
$tax_terms = get_terms($name_terms, $args);
foreach ($tax_terms as $row) {
$term_link = get_term_link($row, $name_terms);
$term_name = $row->name;
// lấy hình ảnh
$img = get_field("hinh_cat", "danhmuc_happiweb_" . $row->term_id);
?>
// Loop
<?php
}
wp_reset_query();
?>

Đăng nhận xét