Load: move is_wp_error() to load.php so that WP_Error is in a file by itself.

See #37827.


git-svn-id: https://develop.svn.wordpress.org/trunk@38363 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor
2016-08-26 09:57:47 +00:00
parent 1b292c965a
commit a048646021
2 changed files with 14 additions and 14 deletions

View File

@@ -202,17 +202,3 @@ class WP_Error {
unset( $this->error_data[ $code ] );
}
}
/**
* Check whether variable is a WordPress Error.
*
* Returns true if $thing is an object of the WP_Error class.
*
* @since 2.1.0
*
* @param mixed $thing Check if unknown variable is a WP_Error object.
* @return bool True, if WP_Error. False, if not WP_Error.
*/
function is_wp_error( $thing ) {
return ( $thing instanceof WP_Error );
}