deprecated_class_trigger_error

deprecated_class_trigger_error

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.3

apply_filters('deprecated_class_trigger_error') is found 1 times:

  • /wp-includes/functions.php line 5675
    	 * @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,