Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different permalink structure for blog posts than pages in Wordpress?

I'd like to have a different permalink structure for posts than for pages on a Wordpress website.

For example, a blog post name "This is a nice blog post" would get the permalink : /blog/this-is-a-nice-blog-post

where as a page called "Services Offered" would get the permalink : /services-offered

I know I should use the %postname% in the permalink structure, but how to add the prefix /blog/ to only those blog posts ?

Thanks in advance!

like image 421
Alex Avatar asked May 03 '11 19:05

Alex


People also ask

Which is the recommended permalink structure?

Best Practices for Permalink StructureThe top-ranking permalinks in Google average 59 characters in length. When possible, create short URLs to help search engines index your pages. By default, WordPress will create a permalink for your unpublished post. However, it may be too long and contain irrelevant words.


1 Answers

Under the permalink settings, you need to use a custom format. To do this, you'll need to take a look at the structure tags available for use. Those can be found here:

http://codex.wordpress.org/Using_Permalinks

To do exactly what you're wanting, you'd want to use a format like this:

/%category%/%postname%/

Pages have no category, so the tag for categories gets ignored and only the post name tag gets used.

I just found this question looking for the same answer. Hope this isn't too late and helps you out.

like image 150
j.burnette Avatar answered Oct 06 '22 06:10

j.burnette