要在WordPress数据库中插入帖子,无论您是作为当前WordPress安装的登录用户还是通过XML-RPC(或任何其他远程方法),您都需要使用以下内容:;
$the_post = array(
\'post_title\' => \'Post Title\',
\'post_content\' => \'My post content\',
\'post_status\' => \'publish\',
\'post_author\' => 1,
);
wp_insert_post( $the_post );
在使用表单或其他编程方式插入帖子的情况下,您的代码可能如下所示;
$the_post = array(
\'post_title\' => \'Post Title\',
\'post_content\' => $_POST[\'message\'],
\'post_status\' => \'publish\',
\'post_author\' => 1,
);
wp_insert_post( $the_post );
底线是,无论您决定如何插入帖子-无论是通过发送短信、使用远程表单、烟雾信号或类似方式-处理要插入的数据的代码必须反映上述示例(以最简单的形式)。
So, what does your code look like that is handling the processing of your incoming SMS message?
参考资料:
wp_insert_post
- WordPress Codex