i am using the standard function below to use excerpts on the home page.
function childtheme_content($content) {
if ( is_home () ) {
$content= 'excerpt';}
return $content;
}
add_filter('thematic_content', 'childtheme_content');
and i am still getting the_post_thumbnail() in the excerpt and i thought that was coming out of thin air, but it is apparently a part of the new thematic excerpt. very cool, except i don't need/want it in my current project.
if ( apply_filters( 'thematic_post_thumbs', TRUE) ) {
$post_title = get_the_title();
$size = apply_filters( 'thematic_post_thumb_size' , array(100,100) );
$attr = apply_filters( 'thematic_post_thumb_attr', array('title' => 'Permalink to ' . $post_title) );
i can't seem to figure out how to set the 'thematic_post_thumbs' filter to false. any help?