WordPress 重写帖子 url 以保留页面 url
我想知道是否可以重写帖子的网址以将当前网址保留为永久链接并在当前网址的末尾添加帖子名称。我问这个是因为我创建了一个自定义 WP_Query 并将其集成到页面中。
所以我希望网址像 http://sitename.me/pagename
(这是自定义查询),并且帖子链接看起来像 http://sitename.me/pagename /postname
而不是 sitename.me/category/postname
。
您对如何实现这一目标有什么建议吗?
谢谢,
西普里安
I was wondering if it's possible to rewrite the url of a post to keep the current url as permalink and add the post name at the end of current url. I ask this because I've created a custom WP_Query and integrated that in a page.
So I want the url to be like http://sitename.me/pagename
(here is the custom query) and the post link would look like http://sitename.me/pagename/postname
instead of sitename.me/category/postname
.
Do you have any suggestions how can this be achieved?
Thanks,
Ciprian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你要求在不知道某人身份的情况下去接他!
您必须以某种方式发送
postname
。可以通过Input Type=Hidden
并从查询字符串中获取它。You are asking to fetch someone with out knowing their identity!
You will have to send the
postname
some way or the other. May be throughInput Type=Hidden
and fetch it from the query-string.