如何使用 wp_insert_post 在 WordPress 中设置 POST 永久链接/slug
我正在使用 wp_insert_post()
编写简单的脚本在博客中发布文章。 但这里有一个问题,我想让 URL 的 Title 和 slug 不同。
如何实现这一目标?
例如:
标题:如何成功节食
标题: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
post_title 设置标题,post_name 设置slug。
所以:
post_title sets the title, and post_name sets the slug.
So: