在WordPress中保存一个php文件

时间:2014-01-22 13:36:23

标签: php wordpress

我刚开始使用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创建帖子时的方法。我的问题是:

  1. 我们如何执行上述PHP脚本以及将它们保存在WordPress文件夹中的哪个位置?

  2. post_category数组意味着什么(我想使用类别ID将帖子添加到WordPress)?

  3. 我想提一下,我已经在网上做了一些下降搜索,但是我发现的资源没有提到如何执行上面的脚本。

0 个答案:

没有答案