4

我正在尝试使用node-wordpress库运行 wordpress RPC 方法,但由于根本没有文档,我不确定运行它的正确方法是什么。

如果你有机会使用它,你能举一些例子吗?

4

1 回答 1

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

希望有帮助。

于 2013-02-27T07:33:04.870 回答