gpt4 book ai didi

php - 如果页面尚不存在,我如何以编程方式在 WordPress 中创建该页面?

转载 作者:行者123 更新时间:2023-12-02 06:10:36 25 4
gpt4 key购买 nike

如果页面尚不存在,如何在 WordPress 中以编程方式创建页面?

最佳答案

I want to write a plugin and to put some html controls in a page which will automatically create when user install the plug in

根据该评论,您想将一个函数挂接到您的插件的激活 Hook ,该函数将 WordPress 帖子对象插入到数据库中;

function my_plugin_activate()
{
wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Page Title',
'post_content' => 'Page Content',
'post_name' => 'page-slug',
));
}
register_activation_hook(__FILE__, 'my_plugin_activate');

关于php - 如果页面尚不存在,我如何以编程方式在 WordPress 中创建该页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3296942/

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