1. [CATEGORY & TAXONOMY & POST] Nhận bài viết theo phân loại tùy chỉnh (ok)
https://qastack.vn/wordpress/165610/get-posts-under-custom-taxonomy


<?php
$args = array(
'type' => 'post',
'taxonomy' => 'genre',
);
$categories = get_categories($args);
foreach ($categories as $cat) {
// here's my code for getting the posts for custom post type
$posts_array = get_posts(
array(
'showposts' => -1,
'post_type' => 'book'
)
);
echo '<pre>';
var_export($posts_array);
echo '</pre>';
}
?>
Previousget child taxonomy wordpress (ok)Next1. [POST & CATEGORY] get_the_category() để xem bài viết thuộc category nào (lấy chi tiết category)
Last updated
Was this helpful?