gpt4 book ai didi

wordpress - 使用 wp_insert_post() 创建一个新页面

转载 作者:行者123 更新时间:2023-12-05 09:24:18 27 4
gpt4 key购买 nike

我在 PHP 函数中有以下代码,当我安装允许您创建帖子或页面的插件时,该函数会被激活。

如果 $post_type 是“post”,可以完美运行并制作页面,但如果 $post_type 是“page”,则它不起作用,不创建页面。:

$my_post = array(
'post_title' => 'My page Reql',
'post_type' => 'page',
'post_name' => 'my-page',
'post_content' => 'This is my page reql.',
'post_status' => 'publish',
'comment_status' => 'closed',
'ping_status' => 'closed',
'post_author' => 1,
'menu_order' => 0
);

wp_insert_post( $my_post );

问题是什么?我找不到解决方案。

非常感谢!

最佳答案

我想你也必须像这样设置guid

$PageGuid = site_url() . "/my-page-req1";
$my_post = array( 'post_title' => 'My page Reql',
'post_type' => 'page',
'post_name' => 'my-page',
'post_content' => 'This is my page reql.',
'post_status' => 'publish',
'comment_status' => 'closed',
'ping_status' => 'closed',
'post_author' => 1,
'menu_order' => 0,
'guid' => $PageGuid );

$PageID = wp_insert_post( $my_post, FALSE ); // Get Post ID - FALSE to return 0 instead of wp_error.

关于wordpress - 使用 wp_insert_post() 创建一个新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13848052/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com