Page 1 of 1

how to create dynamic page within wordpress

Posted: Mon Jan 23, 2012 2:33 pm
by dentrite
hello... i have figured out that while wordpress is a great cms for me to start a site.. but the problem is that i need to put my own signup page design and a custom coding for an application that would use same database as wordpress... now can anyone tell mew how do i
  • create a page in existing template which would be presented after execution of my php code

    Re: how to create dynamic page within wordpress

    Posted: Mon Jan 23, 2012 3:11 pm
    by twinedev
    The "proper way" is to write a plugin to handle this.

    I have a WP site where I had a complex custom form. I cheated, I wrote code that would look for information in the page content (ex. [[FORM:FORM_ID]] at which time it would call the functions to process and/or display the form Left all the control out of WP so any updates to WP didn't interrupt it. Worked for me since being a programmer, couldn't stand any of the WP plugins for custom forms. One of the top rated ones was such a mess on the admin site!

    -Greg