如何使用wordpress npm获取特定类别的帖子列表

时间:2018-07-04 11:56:43

标签: wordpress npm

我可以使用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);
});

1 个答案:

答案 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

中找到更多详细信息

谢谢