使用MySql在Wordpress中插入帖子

时间:2009-11-03 23:30:50

标签: mysql wordpress wordpress-plugin

有谁知道如何使用sql将新帖子插入Wordpress?

3 个答案:

答案 0 :(得分:31)

您可以使用Post对象:

// 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 );

更多信息here

答案 1 :(得分:13)

您的问题询问如何使用SQL将新帖子插入WordPress。如果你真的想这样做,看看“wp”数据库​​表并做一个标准的INSERT - 这不会很难。

但我强烈建议不要这样做 - 即使你想在普通的WP提供的之外创建一个单独的管理控制台,你也应该使用core functions / API他们提供的。例如,wp_insert_post函数就是您要使用的函数。

我相信您可以通过包含/wp-load.php来使用/加载这些功能。

答案 2 :(得分:6)

我开始导出“wp_post”表只是为了查看结构 - 然后复制了第一部分并编写了第二部分;

1:从可用于insert语句的变量开始($ sql)

$sql = "INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ";

2:我从另一个表中获取了我想要插入的内容 - 但是你可以在语句的内部或外部设置变量,只需将变量设置为你想要的变量 -

$sql .= "(' ','".$post_author."',"."'".$post_date."',"."'".$post_date_gmt."',"."'".$post_content."',"."'".$post_title."',"."'".$post_excerpt."',"."'".$post_status."',"."'".$comment_status."',"."'".$ping_status."',"."'".$posd_password."',"."'".$post_name."',"."'".$to_ping."',"."'".$pinged."',"."'".$post_modified."',"."'".$post_modified_gmt."',"."'".$post_content_filtered."',"."'".$post_parent."',"."'".$guid."',"."'".$menu_order."',"."'".$post_type."',"."'".$post_mime_type."',"."'".$comment_count."'),";

之后,使用标准查询:

$res = mysql_query($sql); if($res): print 'Successful Insert'; else: print 'Unable to update table'; endif;