edit doc
Change-Id: I59f2e655b38a7be595833e9b4af9c4f3be584194
This commit is contained in:
parent
e80ee742e8
commit
9074d05bde
|
@ -105,9 +105,9 @@ getAuthors()方法返回的是用户相关的信息:
|
|||
|
||||
这里需要注意postName和postTitle。postTitle指的是文章标题;postName指的则是文章别名,主要在文章的url路径中使用。通常建议将postName设置为英文字符。
|
||||
|
||||
setCategories设置的是文章分类,要求设置的分类在博客中必须已经存在,且名称需要一致。
|
||||
setCategories设置的是文章分类,如设置的分类在博客中不存在,将会按提交的分类名称创建新的分类。
|
||||
|
||||
setTags设置的是文章标签,不要求在博客中已经存在。
|
||||
setTags设置的是文章标签,同样的,如标签在博客中不存在将会创建新的标签。
|
||||
|
||||
更多发布文章的参数可以参考[XML-RPC WordPress API/Posts - newPost](https://codex.wordpress.org/XML-RPC_WordPress_API/Posts#wp.newPost)文档描述。
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ public class WordPressTest {
|
|||
PostRequest post = new PostRequest();
|
||||
post.setPostTitle("测试PostName");
|
||||
post.setPostContent("这是一段测试文章内容");
|
||||
post.setCategories("测试");
|
||||
post.setCategories("分类");
|
||||
post.setTags("a", "b", "c");
|
||||
post.setPostName("test-post-name");
|
||||
int postId = wp.newPost(post);
|
||||
|
|
Loading…
Reference in New Issue