我自己在 WordPress 中的帖子永久链接样式

发布于 2024-10-30 13:12:04 字数 66 浏览 1 评论 0原文

如何以十六进制形式创建帖子的永久链接(例如 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 技术交流群。

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

发布评论

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

评论(2

九局 2024-11-06 13:12:04

我想你可以创建一个插件来拦截保存帖子时的请求,然后将 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.

风向决定发型 2024-11-06 13:12:04

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!

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