在R中使用XMLRPC将帖子标记到自定义分类

时间:2017-07-14 作者:Clement Tan

我使用XML-RPC将帖子上传到WordpressnewPost 来自的函数RWordpress 包裹

我使用的函数调用是:

newPost(
    content = list(
        description = postContent, 
        title = ttl, 
        categories = category_desc, 
        mt_keywords = keywords
    ), 
    publish = TRUE
)
我刚刚为我的帖子创建了自定义分类法,但不确定如何在函数调用中标记这些分类法。有人能提出建议吗?

例如,我有一个名为“Monkey Type”的自定义分类法。我想把它命名为“黑猩猩”。了解newPost() 函数使用metaWeblog.newPost. wp.newPost 允许通过terms和terms names参数将帖子标记为自定义分类法,但我不确定如何在R中提供相关的结构。

1 个回复
SO网友:birgire

似乎不支持自定义分类法metaWeblog.newPost.

对于自托管WordPress安装,可以尝试使用此挂钩来调整添加了metaWeblog.newPost:

/**
 * Fires after a new post has been successfully created via the XML-RPC MovableType API.
 *
 * @since 3.4.0
 *
 * @param int   $post_ID ID of the new post.
 * @param array $args    An array of arguments to create the new post.
 */
 do_action( \'xmlrpc_call_success_mw_newPost\', $post_ID, $args );

结束