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.