我正在尝试使用node-wordpress库运行wordpress RPC方法,但由于根本没有文档,我不确定运行它的正确方法是什么。
如果你有机会使用它,请你展示一些例子吗?
答案 0 :(得分:6)
我已经设法通过阅读模块本身来完成它。
首先启动客户端:
var wp = wordpress.createClient({
"url": 'http://yourwordpressURL',
"username": 'user',
"password": 'pwd'
});
例如,要添加帖子,只需拨打以下电话:
wp.newPost({
title: 'Your title',
status: 'publish', //'publish, draft...',
content: '<strong>This is the content</strong>',
author: 3, // author id
terms: {'category': [category_id]}
},
function() {
console.log(arguments);
}
});
wordpress的所有文档都在http://codex.wordpress.org/XML-RPC_WordPress_API/Posts
中希望有所帮助。