I'd like to alter two things on Thematic. But fail to see the solution.
1. Change image size in the front page only
I'd like to change the size of the post image displayed in the front page.
It seems that a thumbnail is not used on the front page, so the the following doesn't work.
function child_post_thumb() {
return array(400,200);
}
add_filter('thematic_post_thumb_size','child_post_thumb');
2. Change the number of posts displayed in an array.
//The Query
query_posts('posts_per_page=5');
Probably the latter issue is easier to solve.
Thanks