diff --git a/src/bp-blogs/classes/class-bp-blogs-blog.php b/src/bp-blogs/classes/class-bp-blogs-blog.php
index 6e36295..1057dea 100644
--- a/src/bp-blogs/classes/class-bp-blogs-blog.php
+++ b/src/bp-blogs/classes/class-bp-blogs-blog.php
@@ -538,7 +538,8 @@ class BP_Blogs_Blog {
 
 		for ( $i = 0, $count = count( $paged_blogs ); $i < $count; ++$i ) {
 			$blog_prefix = $wpdb->get_blog_prefix( $paged_blogs[$i]->blog_id );
-			$paged_blogs[$i]->latest_post = $wpdb->get_row( "SELECT ID, post_content, post_title, post_excerpt, guid FROM {$blog_prefix}posts WHERE post_status = 'publish' AND post_type = 'post' AND id != 1 ORDER BY id DESC LIMIT 1" );
+			$bh_blog_latest_post_type = apply_filters( "bp_blog_latest_post_type", "post" );
+			$paged_blogs[$i]->latest_post = $wpdb->get_row( "SELECT ID, post_content, post_title, post_excerpt, guid FROM {$blog_prefix}posts WHERE post_status = 'publish' AND post_type = {$bh_blog_latest_post_type} AND id != 1 ORDER BY id DESC LIMIT 1" );
 			$images = array();
 
 			// Add URLs to any Featured Image this post might have.
