diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php
index e517f95..ccad5d2 100644
--- a/wp-admin/includes/dashboard.php
+++ b/wp-admin/includes/dashboard.php
@@ -758,20 +758,43 @@ function wp_dashboard_site_activity() {
 
 	echo '<div id="activity-widget">';
 
-	$future_posts = wp_dashboard_recent_posts( array(
-		'max'     => 5,
-		'status'  => 'future',
-		'order'   => 'ASC',
-		'title'   => __( 'Publishing Soon' ),
-		'id'      => 'future-posts',
-	) );
-	$recent_posts = wp_dashboard_recent_posts( array(
-		'max'     => 5,
-		'status'  => 'publish',
-		'order'   => 'DESC',
-		'title'   => __( 'Recently Published' ),
-		'id'      => 'published-posts',
-	) );
+	$future_posts = wp_dashboard_recent_posts(
+		/**
+		* Filter Dashboard Activity widget future post parameters for wp_dashboard_recent_posts()
+		*
+		* @since 
+		*
+		* @param array  Params for wp_dashboard_recent_posts()
+		*/
+		apply_filters( 'dashboard_activity_widget_future_posts',
+			array(
+				'max'     => 5,
+				'status'  => 'future',
+				'order'   => 'ASC',
+				'title'   => __( 'Publishing Soon' ),
+				'id'      => 'future-posts'
+			)
+		)
+	);
+
+	$recent_posts = wp_dashboard_recent_posts(
+		/**
+		* Filter Dashboard Activity widget recent post parameters for wp_dashboard_recent_posts()
+		*
+		* @since 
+		*
+		* @param array  Params for wp_dashboard_recent_posts()
+		*/
+		apply_filters( 'dashboard_activity_widget_recent_posts',
+			array(
+				'max'     => 5,
+				'status'  => 'publish',
+				'order'   => 'DESC',
+				'title'   => __( 'Recently Published' ),
+				'id'      => 'published-posts'
+			)
+		)
+	);
 
 	$recent_comments = wp_dashboard_recent_comments();
 
