Các function liên quan đến term trong wordpress
Saturday, January 2, 2016 1:54
% of readers think this story is Fact. Add your two cents.
Hôm nay tôi sẽ chia sẽ với anh/chị bài viết “Các function liên quan đến term trong wordpress”. Chúng ta trong quá trình làm theme thì sẽ gặp vấn đề như tôi nói dưới đây:
- Tôi muốn lấy list term
'name', 'order' => 'ASC', 'hide_empty' => true, 'include' => array(), 'exclude' => array(), 'exclude_tree' => array(), 'number' => '', 'offset' => '', 'fields' => 'all', 'name' => '', 'slug' => '', 'hierarchical' => true, 'search' => '', 'name__like' => '', 'description__like' => '', 'pad_counts' => false, 'get' => '', 'child_of' => 0, 'parent' => '', 'childless' => false, 'cache_domain' => 'core', 'update_term_meta_cache' => true, 'meta_query' => '' ); $terms = get_terms($taxonomies, $args); ?>
- Lấy link term
get_term_link( (int) $term_id,'product_cat') get_term_link($term_id,'product_cat')(đối tượng);
- Lấy thông tin term từ term_id
$term = get_term($idpage1,'product_cat') $term->name;
- Lấy thông tin term từ post id
$singer = get_the_terms( get_the_ID(), "product_singer" ); name; ?>
- Get id term parent từ id term child
returns: Array ( [0] => 23 [1] => 6 )
- Get id term child từ id term parent
'; foreach ( $termchildren as $child ) { $term = get_term_by( 'id', $child, $taxonomy_name ); echo '
‘; } echo ”; ?>
2016-01-02 00:52:04
Nguồn: http://fcwordpress.net/cac-function-lien-quan-den-term-trong-wordpress.html