bestsource

jwordpress를 사용하여 WordPress에 게시물 게시

bestsource 2023. 9. 16. 09:33
반응형

jwordpress를 사용하여 WordPress에 게시물 게시

저는 워드프레스 설치에 게시하기 위해 jwordpress-0.4.jar를 사용하고 있습니다.

제가 사용하고 있는 코드는 다음과 같습니다.

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. new post (최근 post, true);

하지만 이 게시물은 여전히 게시되지 않았습니다.

다른 워드프레스 버전으로 해보세요.jwordpress-0.4.jar를 사용했는데 잘 작동했습니다. wordpress를 실행했다면 어떤 버전으로 실행했는지는 기억하지 못합니다.

코드에 입력한 내용:

recentPost.setPost_status("Published");

대신에 이것을 사용합니다.

recentPost.setPost_status("Publish");

언급URL : https://stackoverflow.com/questions/6160003/publishing-posts-in-wordpress-using-jwordpress

반응형