I tried the following code to reduce the number of posts on my home page- it worked but it also reduced the number of posts on the page I have turned the blog template on (basically the same function as "settings > reading"). Is there a way to tell the home page 1 post only?
function single_post_on_homepage() { if(is_home()) { ?>
<?php query_posts("showposts=1"); ?>
<?php } }
add_action('thematic_above_indexloop','single_post_on_homepage');