我可以使用getPostTypes
通过wordpress npm获取帖子列表。
但是我想从特定类别中获取帖子。
有人可以帮我吗?
var filter_array = [];
filter_array['category'] = 67;
filter_array['post_type'] = 'post';
wp.getPosts(filter_array, function(error, posts) {
console.log(posts);
});
答案 0 :(得分:0)
您可以尝试使用此代码,
/ All posts in category "islands" and tags "clouds" & "sunset"
// (filter can either accept two parameters, as above where it's called with
// a key and a value, or an object of parameter keys and values, as below)
wp.posts().filter({
category_name: 'islands',
tag: [ 'clouds', 'sunset' ]
}).get();
此外,您可以在此链接Wordpress API Link
中找到更多详细信息谢谢