如何使用node-wordpress的示例

时间:2012-09-27 11:40:25

标签: wordpress node.js

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

如果你有机会使用它,请你展示一些例子吗?

1 个答案:

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

希望有所帮助。