From ea3507034f1f5b422c01448d1f25bb39fa49a1e8 Mon Sep 17 00:00:00 2001 From: Konstantin Obenland Date: Wed, 6 Sep 2017 21:31:26 +0000 Subject: [PATCH] Widgets: Improve _doing_it_wrong message. Adds more context to help sending developers on the path to success. Props ramiy. Fixes 41743. git-svn-id: https://develop.svn.wordpress.org/trunk@41340 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/widgets.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/widgets.php b/src/wp-includes/widgets.php index 3b4944023c..719b273f73 100644 --- a/src/wp-includes/widgets.php +++ b/src/wp-includes/widgets.php @@ -1037,7 +1037,8 @@ function the_widget( $widget, $instance = array(), $args = array() ) { global $wp_widget_factory; if ( ! isset( $wp_widget_factory->widgets[ $widget ] ) ) { - _doing_it_wrong( __FUNCTION__, __( 'Widgets need to be registered before they can be displayed.' ), '4.9.0' ); + /* translators: %s: register_widget() */ + _doing_it_wrong( __FUNCTION__, sprintf( __( 'Widgets need to be registered using %s, before they can be displayed.' ), 'register_widget()' ), '4.9.0' ); return; }