Changeset 49086
- Timestamp:
- 10/02/2020 12:35:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r49084 r49086 3191 3191 */ 3192 3192 $check = apply_filters( 'pre_trash_post', null, $post ); 3193 3193 3194 if ( null !== $check ) { 3194 3195 return $check; … … 3317 3318 3318 3319 $post = get_post( $post ); 3319 if ( empty( $post ) ) { 3320 3321 if ( ! $post ) { 3320 3322 return; 3321 3323 } … … 3333 3335 3334 3336 $comments = $wpdb->get_results( $wpdb->prepare( "SELECT comment_ID, comment_approved FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id ) ); 3335 if ( empty( $comments ) ) { 3337 3338 if ( ! $comments ) { 3336 3339 return; 3337 3340 } … … 3376 3379 3377 3380 $post = get_post( $post ); 3378 if ( empty( $post ) ) { 3381 3382 if ( ! $post ) { 3379 3383 return; 3380 3384 } … … 3384 3388 $statuses = get_post_meta( $post_id, '_wp_trash_meta_comments_status', true ); 3385 3389 3386 if ( empty( $statuses )) {3390 if ( ! $statuses ) { 3387 3391 return true; 3388 3392 } … … 4371 4375 4372 4376 $post = get_post( $post ); 4377 4373 4378 if ( ! $post ) { 4374 4379 return; … … 4443 4448 $post = get_post( $post_id ); 4444 4449 4445 if ( empty( $post )) {4450 if ( ! $post ) { 4446 4451 return; 4447 4452 } … … 4898 4903 4899 4904 $post = get_post( $post_id ); 4905 4900 4906 if ( ! $post ) { 4901 4907 return false; … … 4974 4980 function get_pung( $post_id ) { 4975 4981 $post = get_post( $post_id ); 4982 4976 4983 if ( ! $post ) { 4977 4984 return false; … … 5995 6002 $data = get_post_meta( $attachment_id, '_wp_attachment_metadata', true ); 5996 6003 5997 if ( empty( $data )) {6004 if ( ! $data ) { 5998 6005 return false; 5999 6006 } … … 6028 6035 6029 6036 $post = get_post( $attachment_id ); 6037 6030 6038 if ( ! $post ) { 6031 6039 return false; … … 6062 6070 6063 6071 $post = get_post( $attachment_id ); 6072 6064 6073 if ( ! $post ) { 6065 6074 return false; … … 6095 6104 * not recommended to rely upon this. 6096 6105 */ 6097 if ( empty( $url )) {6106 if ( ! $url ) { 6098 6107 $url = get_the_guid( $post->ID ); 6099 6108 } … … 6114 6123 $url = apply_filters( 'wp_get_attachment_url', $url, $post->ID ); 6115 6124 6116 if ( empty( $url )) {6125 if ( ! $url ) { 6117 6126 return false; 6118 6127 } … … 6132 6141 $post_id = (int) $post_id; 6133 6142 $post = get_post( $post_id ); 6143 6134 6144 if ( ! $post ) { 6135 6145 return false; … … 6164 6174 $post_id = (int) $post_id; 6165 6175 $post = get_post( $post_id ); 6176 6166 6177 if ( ! $post ) { 6167 6178 return false; … … 6203 6214 $post_id = (int) $post_id; 6204 6215 $post = get_post( $post_id ); 6216 6205 6217 if ( ! $post ) { 6206 6218 return false; … … 6246 6258 function wp_attachment_is( $type, $post = null ) { 6247 6259 $post = get_post( $post ); 6260 6248 6261 if ( ! $post ) { 6249 6262 return false; … … 6251 6264 6252 6265 $file = get_attached_file( $post->ID ); 6266 6253 6267 if ( ! $file ) { 6254 6268 return false; … … 6260 6274 6261 6275 $check = wp_check_filetype( $file ); 6276 6262 6277 if ( empty( $check['ext'] ) ) { 6263 6278 return false; … … 6830 6845 6831 6846 $post = get_post( $post ); 6832 if ( empty( $post ) ) { 6847 6848 if ( ! $post ) { 6833 6849 return; 6834 6850 } … … 7127 7143 7128 7144 // New post can't cause a loop. 7129 if ( empty( $post_ID )) {7145 if ( ! $post_ID ) { 7130 7146 return $post_parent; 7131 7147 } … … 7476 7492 $image_url = wp_get_attachment_url( $attachment_id ); 7477 7493 7478 if ( empty( $image_url )) {7494 if ( ! $image_url ) { 7479 7495 return false; 7480 7496 }
Note: See TracChangeset
for help on using the changeset viewer.