Wordpress URL help

PixelMathis

Senior Member
Joined
Jun 10, 2014
Messages
1,195
Reaction score
490
How can I set URL in wordpress like this - site.com/12857/xxxxx?
 
What is that xxxx?

If it can be your post/page url, Goto

Code:
https://yourdomain.com/wp-admin/options-permalink.php

select the last radio button ie. Custom Structure

and input the following in the field

Code:
12857/%postname%/

and press Save changes button
 
How can I set URL in wordpress like this - site.com/12857/xxxxx?
set via permalink in wordpress like /%category%/%postname%/
in this case of yours i assumed 12857 is category name and other is post name
 
set via permalink in wordpress like /%category%/%postname%/
in this case of yours i assumed 12857 is category name and other is post name

No it's not a category it's a random number
 
What is that xxxx?

If it can be your post/page url, Goto

Code:
https://yourdomain.com/wp-admin/options-permalink.php

select the last radio button ie. Custom Structure

and input the following in the field

Code:
12857/%postname%/

and press Save changes button

Thanks. The xxxx is the "actual" URL and the 12587 is a random number. How do I set it as a random 5 digit number?
 
setup just url.com/post otherwise your url will be bloody long.
 
%post_id% will be replaced with the post identifier, it's not random but maybe it could help you
 
You need generated one or only that numbers ?

You can add /12312321/%postname%/
or
NUMBERS%post_id%/%postname%/

sitename.com/Random numbers/post-name-url-whatever.
 
Back
Top