Hi All I Have A Question regarding to my Wordpress Site Lets Say I Have a Page Called " Your Suggestions" Now What I Want Is When A User Click On This Page. i Want A Post to Open on That Page With The Comment Box. Or you can Say that I Want To redirect a User to One of My Post When he Click On That Page Here is More Briefly If I m Saying Wrong I Have a post Link Like www.mydomain.com/?p=1 Now I Want When a User Click on One Of My page This Post page Appears I Know its a Dumb Question But I m Having a Headache With this So Please let me know About This Thanx In Advance
This is one way to do it. It's probably not the best way though. Create the page in Wordpress, change to HTML view, and put this at the top: <script type="text/javascript"> <!-- function myRedirect() { window.location = "POST LINK HERE" } //--> </script> <div style="position: absolute; height: 100%; width: 100%;" onclick="myRedirect()"></div> Code (markup): That will make the the area under the page title clickable. I'm still looking for a way to make the div cover the entire page, including the header and footer. One way to make the entire page clickable is to open header.php and change the opening body tag to <body onclick="myRedirect()">