0
我在節點中有一個簡單的腳本,但是問題與一般的API有關。Wordpress API,帶有類別和標籤的新帖子
我可以通過API輕鬆創建新帖子,但無法添加類別或標籤。
我的代碼:
client.newPost({
title: 'title of the post',
status: 'publish',
type: 'post',
content: 'content of the post',
categories: ["category1", "category2"]
}, function(err, id) {
if (err) console.log(err)
else console.log(id)
});
我只貼有趣的部分,其餘的偉大工程。 讓我們甚至說這些類別存在。