Hey Rob…not sure if it was just me but I could have sworn that ECP posts were being added to my blog feed previously (again it could just be me). Resaved permalinks, but no go. Found this nice piece of code to manually add custom post types to the blog feed. Works great so I’m happy.
function my_get_posts( $query ) {
if ( ( is_home() && $query->is_main_query() ) || is_feed() )
$query->set( ‘post_type’, array( ‘post’, ‘tribe_events’ ) );
return $query;
}
add_filter( ‘pre_get_posts’, ‘my_get_posts’ );
PS here’s the site if you want to take a look. A tad more cleanup to do and it shoudl be good to launch next week. http://sustainableelements.ca/