put the following code in the functions.php in your current theme directory: add_filter( ‘pre_get_posts’, ‘my_get_posts’ ); function my_get_posts( $query ) { if ( is_home() ) $query->set( ‘post_type’, array( ‘post’, ‘page’, ‘album’, ‘movie’, ‘quote’, ‘attachment’ ) ); return $query; } via: http://justintadlock.com/archives/2010/02/02/showing-custom-post-types-on-your-home-blog-page
SnowTweet
Xe Dap Oi !