Posts: 457
Name: Randy
Location: Northern Wisconsin
|
If you want your html, etc to remain exactly(almost) as it is now then you can do this:
1. You need to make sure you are using the same header/footer across your site as in your news page so that your whole site is powered through wordpress.
2. Create a page in wp for each of your site's existing pages. Place your content as normal through the admin area for each page.
3. Within your existing coded pages, create a loop within your content area that calls that specific page you created in step 2.(The content you want to manage with wp)
Example:
Code:
<div id="content">
<?php query_posts('pagename=about'); ?>
//The Loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
// your content would be displayed here
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
Everything else on the page can remain the same. This is only one example.
I will say, however, there are easier cms's for just a simple area to edit.(Just google easy cms). With Wordpress or any cms you should be taking advantage of a page "template" that all or most of the pages follow. Then you aren't editing so many files down the road even if you have 100 pages.
|