My own post permalinks style in WordPress

How to make permalinks to posts in hexademical (like site.com/?p=11 to example.com/0x000b)?

Related posts

Leave a Reply

2 comments

  1. 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.