deprecated_class_trigger_error

deprecated_class_trigger_error

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.8

apply_filters('deprecated_class_trigger_error') is found 1 times:

  • /wp-includes/functions.php line 5714
    5710
    5711
    5712
    5713
    5714
    5715
    5716
    5717
    5718
    5719
    5720
    * @since 6.4.0
     *
     * @param bool $trigger Whether to trigger an error for a deprecated class. Default true.
     */
    if ( WP_DEBUG && apply_filters( 'deprecated_class_trigger_error', true ) ) {
        if ( function_exists( '__' ) ) {
            if ( $replacement ) {
                $message = sprintf(
                    /* translators: 1: PHP class name, 2: Version number, 3: Alternative class or function name. */
                    __( 'Class %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
                    $class_name,