Ok, if anyone interested, here is what I have learned:
I created a php page modeled on my existing index page.
At the very top of the page (following instructions from corvidworks from October 2008 on displaying wordpress content outside your blog) I put:
<?php
//Include Wordpress
define('WP_USE_THEMES', false);
require('./blog/wp-blog-header.php');
query_posts('showposts=6');
?>
Then on the page I where I wanted the blog posts to appear, I put:
<?php while (have_posts()): the_post(); ?>
<?php endwhile; ?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
I still have a lot of work to do, including deciding whether it is worth it to do this, but you can see what I have done so far on my test file at
http://weavehouston.org/wordpressimporttest2.php.
On the "worth it" issue: I know many of our members will never go to the blog for the "news" so I have been duplicating effort putting our news stories on both the blog and the main page.
On my web site I have html files that are ssi includes as my menus on the left and right and a footer at the bottom.
To bring them into my test file, I used the PHP include statement using this syntax:
<?php include("filenameleft.html"); ?>
<?php include("filenameright.html"); ?>
[I thought I would have to save these included files with the php extension but they work with the html extension.]
On my right menu file, it already had an ssi include for the meeting information so I ADDED a php include to it. This makes the same included file work on both my php page AND my html pages. Is it kosher to have both a php and an ssi include calling the same file? I do that so I do not have to have separate menu files for my php page and my html page.
Issues: 1. Right now I have NOT changed my top item on my left menu included file to point to the index.php because I am just testing and so far do not have index.php.
2. I cannot get the date updated to return at the bottom of my php page. I am sure I need a PHP statement to accomplish that, but the one I tried did not work.
3. I pride myself on validating my pages but the entries pulled in from the blog don't validate. I have not closely examined this to see if it is because of my errors when posting to the blog or some other issue.
Anyway, I am happy to have accomplished a web page pulling in blog posts for now!!! Go look at it at
http://weavehouston.org/wordpressimporttest2.php - UPDATE: the file I was working on is now called index.php - and give me the benefit of your feedback.
Webweaver