博客文章的永久链接结构与 WordPress 中的页面不同?
我希望帖子的永久链接结构与 WordPress 网站上的页面不同。
例如,博客文章名称“这是一篇不错的博客文章”将获得永久链接: /blog/this-is-a-nice-blog-post
作为一个名为“提供的服务”的页面将获得永久链接: /services-offered
我知道我应该在永久链接结构中使用 %postname%,但是如何仅将前缀 /blog/ 添加到那些博客文章中?
提前致谢!
I'd like to have a different permalink structure for posts than for pages on a Wordpress website.
For example, a blog post name "This is a nice blog post" would get the permalink :
/blog/this-is-a-nice-blog-post
where as a page called "Services Offered" would get the permalink :
/services-offered
I know I should use the %postname% in the permalink structure, but how to add the prefix /blog/ to only those blog posts ?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在永久链接设置下,您需要使用自定义格式。为此,您需要查看可用的结构标签。这些可以在这里找到:
http://codex.wordpress.org/Using_Permalinks
要完全按照您想要的方式进行,您'想要使用这样的格式:
/%category%/%postname%/
页面没有类别,因此类别标签被忽略,只使用帖子名称标签。
我刚刚发现这个问题正在寻找相同的答案。希望这还不算太晚并能帮助您。
Under the permalink settings, you need to use a custom format. To do this, you'll need to take a look at the structure tags available for use. Those can be found here:
http://codex.wordpress.org/Using_Permalinks
To do exactly what you're wanting, you'd want to use a format like this:
/%category%/%postname%/
Pages have no category, so the tag for categories gets ignored and only the post name tag gets used.
I just found this question looking for the same answer. Hope this isn't too late and helps you out.