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

Ahm*_*ani 1 php wordpress categories

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

Adr*_*uss 6

您可以使用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 );
Run Code Online (Sandbox Code Playgroud)

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