diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index f4e2681efe..418df87528 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -523,7 +523,7 @@ function wp_widget_text($args, $number = 1) { extract($args); $options = get_option('widget_text'); $title = $options[$number]['title']; - $text = $options[$number]['text']; + $text = apply_filters( 'widget_text', $options[$number]['text'] ); ?>