如何以编程方式将帖子添加到类别中

时间:2014-05-02 18:47:47

标签: php wordpress categories

我是Wordpress和php的新手,很抱歉我的基本问题。 我想以编程方式在类别中添加一些帖子。 例如,每天我想选择一些帖子并将它们插入到带有PHP代码的类别中,并在第二天替换其他一些帖子。 可能吗?怎么样? 提前谢谢。

2 个答案:

答案 0 :(得分:5)

您可以使用wp_insert_post https://codex.wordpress.org/Function_Reference/wp_insert_post

参见Codex,这里有很多例子:

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

要更新帖子,请参阅wp_update_post https://codex.wordpress.org/Function_Reference/wp_update_post

答案 1 :(得分:5)

使用https://codex.wordpress.org/Function_Reference/wp_set_post_categories

wp_set_post_categories( $post_id, array( 1, 2 ) );