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

发布于 2024-11-05 03:20:40 字数 245 浏览 1 评论 0原文

我正在使用 wp_insert_post() 编写简单的脚本在博客中发布文章。 但这里有一个问题,我想让 URL 的 Titleslug 不同。

如何实现这一目标?

例如:

标题:如何成功节食

标题:7-ways-to-make-succes-Diet

I m writing simple script using wp_insert_post() to post article in blog.
but one problem here, I want to make Title and slug of an URL different.

How to achieve this?

for example:

Title: How to make your diet success

Slug: 7-ways-to-make-succes-Diet

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绻影浮沉 2024-11-12 03:20:40

post_title 设置标题,post_name 设置slug。
所以:

// 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 );

post_title sets the title, and post_name sets the slug.
So:

// 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 );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文