gpt4 book ai didi

wordpress - 如何使用 wp_insert_post 在 wordpress 中设置 POST 永久链接/slug

转载 作者:行者123 更新时间:2023-12-04 02:44:23 25 4
gpt4 key购买 nike

我正在使用 wp_insert_post() 编写简单的脚本在博客中发表文章。
但是这里有一个问题,我想制作 标题弹头的网址不同。

如何实现这一目标?

例如:

标题:如何让你的饮食成功

弹头:7-ways-to-make-succes-Diet

最佳答案

post_title 设置标题,和 post_name 设置弹头。
所以:

// Create post object
$my_post = array(
'post_title' => 'How to make your diet success',
'post_name' => '7-ways-to-make-succes-Diet',
'post_content' => 'my content',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(8,39)
);

// Insert the post into the database
wp_insert_post( $my_post );

关于wordpress - 如何使用 wp_insert_post 在 wordpress 中设置 POST 永久链接/slug,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5897758/

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