wp_insert_post函数用于在WordPress数据库中插入一篇新的文章或页面。下面是对这个函数的详细用法解析:
1. 函数原型:
wp_insert_post( $postarr, $wp_error );
2. 参数说明:
- $postarr:这是一个包含文章或页面信息的关联数组,数组的键是字段名,数组的值是字段的值。常见的字段包括'post_title'(文章或页面的标题)、'post_content'(文章或页面的内容)、'post_author'(文章或页面的作者ID)、'post_status'(文章或页面的状态,默认为'publish')等。可以根据需要自定义其他字段。示例:
$postarr = array(
'post_title' => 'Hello World',
'post_content' => 'This is my first post.',
'post_author' => 1,
'post_status' => 'publish',
'post_type' => 'post'
);
- $wp_error(可选):是否返回WP_Error对象,默认为false。如果设置为true,则在插入文章或页面发生错误时返回WP_Error对象。
3. 函数返回值:
- 如果插入成功,该函数返回插入文章或页面的ID。
- 如果插入失败,该函数返回0或WP_Error对象。
4. 示例用法:
// 创建一个数组包含文章信息
$postarr = array(
'post_title' => 'Hello World',
'post_content' => 'This is my first post.',
'post_author' => 1,
'post_status' => 'publish',
'post_type' => 'post'
);
// 插入文章
$post_id = wp_insert_post( $postarr );
// 检查插入是否成功
if ( is_wp_error( $post_id ) ) {
$error_message = $post_id->get_error_message();
echo "文章插入失败:$error_message";
} else {
echo "文章插入成功,ID为$post_id";
}
以上是对wp_insert_post函数的详细解析和示例用法。希望对你有帮助!
0 个评论