diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 2c315baa4..7fade59eb 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3530,12 +3530,12 @@ function _deprecated_argument( $function, $version, $message = null ) { */ function _doing_it_wrong( $function, $message, $version ) { - $message .= ' ' . __('Please see Debugging in WordPress for more information.'); do_action( 'doing_it_wrong_run', $function, $message, $version ); // Allow plugin to filter the output error trigger if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) { $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version ); + $message .= ' ' . __( 'Please see Debugging in WordPress for more information.' ); trigger_error( sprintf( __( '%1$s was called incorrectly. %2$s %3$s' ), $function, $message, $version ) ); } }