我刚开始使用WordPress。我正在尝试使用php向Wordpress添加帖子,我遇到了这段代码:
// 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 );
我理解这是使用php创建帖子时的方法。我的问题是:
我们如何执行上述PHP脚本以及将它们保存在WordPress文件夹中的哪个位置?
post_category
数组意味着什么(我想使用类别ID将帖子添加到WordPress)?
我想提一下,我已经在网上做了一些下降搜索,但是我发现的资源没有提到如何执行上面的脚本。