• I have a client who currently has a static website and all of her pages are ending in PHP.
    She wants to run wordpress and link back to these pages so they will show up in wordpress when you click on them. Is this possible through <?php include(“pagename.php”); ?> and how would I do this? I’m not very savvy with this sort of thing.

    Thanks

Viewing 1 replies (of 1 total)
  • One option if you want the content in WordPress: Put the .php files in your theme folder and then use this in your template files:

    <?php include (TEMPLATEPATH . '/your.php'); ?>

Viewing 1 replies (of 1 total)

The topic ‘Going from static site to wordpress, including PHP pages.’ is closed to new replies.