Change-Id: Ia2af41dc827e18e65f64d0afbfa5d155fcae5c7f
This commit is contained in:
rui.zhang 2018-12-28 13:16:05 +08:00
parent fcd79fb935
commit c9f42b42f1
2 changed files with 5 additions and 5 deletions

View File

@ -96,8 +96,8 @@ getAuthors()方法返回的是用户相关的信息:
PostRequest post = new PostRequest();
post.setPostTitle("测试Title");
post.setPostContent("这是一段测试文章内容");
post.setCategories("分类1","分类2");
post.setTags("a", "b", "c");
post.addCategories("分类1","分类2");
post.addTags("a", "b", "c");
post.setPostName("test-post-name");
int postId = wp.newPost(post);
```

View File

@ -55,7 +55,7 @@ public class WordPressTest {
public void getPosts() throws JsonProcessingException {
PostFilter f = new PostFilter();
f.setNumber(2);
List<Post> list = wp.getPosts(f,"post_title");
List<Post> list = wp.getPosts(f, "post_title");
System.out.println(toJson(list));
Assert.assertFalse(list.isEmpty());
}
@ -73,8 +73,8 @@ public class WordPressTest {
PostRequest post = new PostRequest();
post.setPostTitle("测试PostName");
post.setPostContent("这是一段测试文章内容");
post.setCategories("分类");
post.setTags("a", "b", "c");
post.addCategories("分类");
post.addTags("a", "b", "c");
post.setPostName("test-post-name");
int postId = wp.newPost(post);
System.out.println(postId);