View Single Post
02-14-2008, 02:47 PM
#2
Seb is offline Seb
Seb's Avatar
Status: Watermelon Man
Join date: Nov 2006
Location: London
Expertise:
Software:
 
Posts: 3,312
iTrader: 36 / 100%
 

Seb is on a distinguished road

  Old

Try this:

Put the following at the top somewhere:

Code:
<?php
  	define('WP_USE_THEMES', false); 
  	require('route_to_blog/wp-blog-header.php'); 
?>
Then in the area you want the information to display:

Code:
	<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
					<?php the_content(); ?>
					<?php endforeach; ?>
I think that's what you mean anyway...