I have created a custom page named 'photo' in Wordpress and using a permalink structure like "%category%/%postname%". Now I need to pass some URL variables like the following -
http://wordpress.local/photo/id/200/action/resize/width/300/height/260
The GET variable should look like the following array. How to do this without touching the .htaccess file?
array( 'id' => 200, 'action' => 'resize', 'width' => 300, 'height' => 260 );