我正在使用jwordpress-0.4.jar发布到WordPress安装。

我使用的代码是:

Wordpress wp = new Wordpress(username, password, xmlRpcUrl);
Page recentPost = new Page();
recentPost.setPost_status("Published");
recentPost.setDescription("<ul>" + desc + "</ul>");
recentPost.setCategories(cat);
String pageID=recentPost.getPage_id();
String result = wp.newPost(recentPost, true);

以前效果不错,但是现在当我发布时,将其设置为计划模式,
我努力了:

最近的Post.setPost_status(“已发布”);



wp.​​newPost(recentPost,true);

但是该帖子仍未发表:

最佳答案

尝试使用其他wordpress版本。我已经使用了jwordpress-0.4.jar,它对我来说很好用,但是如果我在运行wordpress,就不记得哪个版本了。

07-22 08:13