Bỏ qua cache css trên wordpress
23/07/2024
20/01/2023 - 158
<!-- Get category --> <?php $args = array( 'hide_empty' => 0, 'taxonomy' => 'category', 'orderby' => id, ); $cates = get_categories( $args ); foreach ( $cates as $cate ) { ?> <li> <a href="<?php echo get_term_link($cate->slug, 'category'); ?>"><?php echo $cate->name ?></a> </li> <?php } ?> <!-- Get category -->
Đây là đoạn code lấy danh sách các chuyên mục, ‘taxonomy’ => ‘category’ có nghĩa là lấy theo category.