Hi!
I've just intergrated wordpress onto my homepage of my site: http://www.deadandwalking.com/
However, it only displays a snippet of a post, and it doesn't link the post title to the post, only a read more link. I want the whole post to be displayed with images and bold/itialic etc...
Here is the code that I have used in my index file:
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('./blog/wp-load.php');
query_posts('showposts=10');
?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">Read more...</a></p>
<?php endwhile; ?>
</p>
If anyone could help me out on how to accomplish the above, i'd be so happy! :)