使用MySql在Wordpress中插入帖子
问题描述:
有人知道如何使用sql在Wordpress中插入新帖子吗?
Does anyone know how to insert a new post into Wordpress using sql?
答
您可以使用Post对象:
You can use the Post object:
// Create post object
$my_post = array();
$my_post['post_title'] = 'My post';
$my_post['post_content'] = 'This is my post.';
$my_post['post_status'] = 'publish';
$my_post['post_author'] = 1;
$my_post['post_category'] = array(8,39);
// Insert the post into the database
wp_insert_post( $my_post );
在此处找到了更多信息.