我刚开始使用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\\u category”数组是什么意思(我想使用类别id向WordPress添加帖子)?
我想提一下,我在网上做了一些下降搜索,但我找到的资源没有提到如何执行上述脚本。