wp/wp-includes/class-wp-post.php
changeset 19 3d72ae0968f4
parent 18 be944660c56a
child 21 48c4eec2b7e6
equal deleted inserted replaced
18:be944660c56a 19:3d72ae0968f4
   245 				return false;
   245 				return false;
   246 			}
   246 			}
   247 
   247 
   248 			$_post = sanitize_post( $_post, 'raw' );
   248 			$_post = sanitize_post( $_post, 'raw' );
   249 			wp_cache_add( $_post->ID, $_post, 'posts' );
   249 			wp_cache_add( $_post->ID, $_post, 'posts' );
   250 		} elseif ( empty( $_post->filter ) ) {
   250 		} elseif ( empty( $_post->filter ) || 'raw' !== $_post->filter ) {
   251 			$_post = sanitize_post( $_post, 'raw' );
   251 			$_post = sanitize_post( $_post, 'raw' );
   252 		}
   252 		}
   253 
   253 
   254 		return new WP_Post( $_post );
   254 		return new WP_Post( $_post );
   255 	}
   255 	}