PluginProbe
Friends / 4.3.2
Friends v4.3.2
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
← All changes | includes/class-notifications.php +2 -0 4.2.24.3.2 View file →
@@ -92,8 +92,10 @@
92 92 public function notify_new_friend_post( \WP_Post $post, User_Feed $user_feed, $keyword ) {
93 93 if (
94 94 // Post might be trashed through rules.
95 95 'trash' === $post->post_status
96 + // Don't notify about posts that WordPress scheduled for future publishing.
97 + || 'future' === $post->post_status
96 98 // Don't notify about posts older than a week.
97 99 || strtotime( $post->post_date_gmt ) + WEEK_IN_SECONDS < time()
98 100 ) {
99 101 return;