Can I have single digit wordpress permalinks? Trying to force the permalink to “2” e.g. automatically rewrites it to “2-2”.
Looking into it a bit further I discovered this is the case for any numerical permalink – I reckon it has to do with possible interference with paging but have a use case where I would like to use this structure..
I’ve dealt with this once by intercepting the post slug creation and “fixing” it somehow. Maybe you can work from this:
Do you really need single-digit slugs? If you can have your way with 00001 or 000005, the
wp_insert_post_datafilter is probably the way to go.