| @@ -210,8 +210,13 @@ | ||
| 210 | 210 | if ( $post->post_type !== 'post' ) { |
| 211 | 211 | return false; |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | + // Private posts are not sent to subscribers. | |
| 215 | + if ( 'private' === $post->post_status ) { | |
| 216 | + return false; | |
| 217 | + } | |
| 218 | + | |
| 214 | 219 | /** |
| 215 | 220 | * Array of categories that will never trigger subscription emails. |
| 216 | 221 | * |
| 217 | 222 | * Will not send subscription emails from any post from within these categories. |