This works:
<?php require(‘blog/wp-blog-header.php’); ?>
<!– Start the Loop. –>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class=”entry”>
<?php the_excerpt(); ?>
“>Read More: <?php the_title(); ?>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
But A, i cant set the number of post i want to show.. i only want 2 but its showing about 10
B, the excerpt is still too long… wanna make it shorter
please help