Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: is_wp_error_instance

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1740
1741      if ( $is_wp_error ) {
1742           /**
1743            * Fires when `is_wp_error()` is called and its parameter is an instance of `WP_Error`.
1744            *
1745            * @since 5.6.0
1746            *
1747            * @param WP_Error $thing The error object passed to `is_wp_error()`.
1748            */
1749           do_action( 'is_wp_error_instance', $thing );
1750      }
1751
1752      return $is_wp_error;
1753 }
1754
1755 /**
1756  * Determines whether file modifications are allowed.
1757  *
1758  * @since 4.8.0