is_wp_error_instance

is_wp_error_instance

Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('is_wp_error_instance') is found 1 times:

  • /wp-includes/load.php line 1784
    1780
    1781
    1782
    1783
    1784
    1785
    1786
    1787
    1788
    1789
    1790
             * @since 5.6.0
             *
             * @param WP_Error $thing The error object passed to `is_wp_error()`.
             */
            do_action( 'is_wp_error_instance', $thing );
        }
     
        return $is_wp_error;
    }
     
    /**