i have a Wordpress site that has the main page set to a specific template.
www.mydomain.com -> main_page_template
I am trying to pass in some params to my main URL as follows www.mydomain.com/?name=test&id=100
The issue is when passing in such parameters it always shows the list of current posts (it calls my index.php file which lists all posts) as opposed to the main page. When i dont pass parameters, it shows fine.
For all other pages, the above is fine (i.e. www.mydomain.com/page1/?name=test&id=100).
Any ideas on how i can pass parameters in yet still have it show the homepage?
Finally, i know the permalink settings cause some form of rewriting, how can i get the raw unrwitten query to the page, i.e. www.mydomain.com?p=100. This would help for debugging.
Thanks in advance,
Chris