我自己在 WordPress 中的帖子永久链接样式
如何以十六进制形式创建帖子的永久链接(例如 site.com/?p=11 到 example.com/0x000b)?
How to make permalinks to posts in hexademical (like site.com/?p=11 to example.com/0x000b)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你可以创建一个插件来拦截保存帖子时的请求,然后将 post_name 更改为十六进制(post->id)。
只需将其挂接到 save_post 事件即可。不确定这是正确的名字。
I gues you can create a plugin to intercept the request when saving a post and then change the post_name to hex(post->id).
Just hook it the the save_post event. Not sure that is the correct name.
VeroLom,您正在寻找的函数是 add_rewrite_tag() ,它可以让您注册一个新的 < code>%hexcode% 标记,然后可以在永久链接结构中使用,就像
%postname%
一样。参考链接:干杯!
VeroLom, the function you're looking for is add_rewrite_tag() that would let you register a new
%hexcode%
tag that could then be used in your permalinks structure just like%postname%
. Reference links:Cheers!