我正在寻找API,我可以使用它以编程方式在wordpress上发布博客。 请注意,我想将用户重定向到wordpress,因此我正在寻找一个“GET”wordpress API。
答案 0 :(得分:2)
您可以使用wordpress功能wp_insert_post
// Create post object
$my_post = array(
'post_title' => 'My post',
'post_content' => 'This is my post.',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(8,39)
);
// Insert the post into the database
wp_insert_post( $my_post );
答案 1 :(得分:0)
Wordpress支持Atom发布协议和XML-RPC。简化的解决方案可能是使用电子邮件后的功能。您的程序可以通过电子邮件发送博客条目。
答案 2 :(得分:0)
查看WordPress XML-RPC Support,了解如何在客户端中使用不同的API,例如Blogger API,metaWeblog API和Movable Type API。