Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know there are a lot of tutorials about wordpress rewrite rules and tags, but i am trying to find something which is hard for me to understand.

I'm having the rewriting on and i have a custom post type which uses 'model' as a slug.

So what i want to do is to register something like a rewrite keyword which if present in the url will add a value to a variable in the single-model.php file.

Example: 'mydomain.com/model/bmw-323i/' will show the normal single post content, but there is a gallery content which is not visible with the other content. So if i have 'mydomain.com/model/bmw-323i/gallery/' the 'gallery' string will be used as a keyword and i will do something in the php file like: if ( 'gallery' is present ) { $show_gallery = true; }

I can do this easy with javascript hashchange, but i want to have this as a no-script backup and use js if the browser support history push state, but if not i will not use js only pure php.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.