Yea that's exactly it! I'm getting close. I got a loop going and i'm sticking it in the define_main_page.php but i'm fighting an error message right now.
Heres the loop that i'm working on right now
Code:
<?php
require('./wordpress/wp-blog-header.php');
?>
<div id="blog"><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><?php the_title(); ?></a></h3>
</div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
But i'm getting this error ugh!
1146 Table 'wordpress.configuration' doesn't exist
in:
[select configuration_key, configuration_value from configuration where configuration_key RLIKE 'SHOW_PRODUCT_INFO_MAIN' and configuration_value > 0 order by configuration_value]
1146 Table 'wordpress.sessions' doesn't exist
in:
[select count(*) as total from sessions where sesskey = '2pavvh6j66ieaf1p5as8bo3h81']
Care to share the loop code your useing ;)