I've the below php to display the content of the post id#9 on my 'home page' of my site, so that whenever the client updates the page, it's reflected on the homepage as well - rather than having to make the change twice.
At the moment all the post content is being shown, I need to strip it down to about 100 words...
Any ideas?
<?php $id=9; $post = get_page($id); $content = apply_filters('the_content', $post->post_content); echo $content; ?>
