diff --git a/public_html/wp/wp-includes/widgets.php b/public_html/wp/wp-includes/widgets.php
index 5a2f58c..90d001a 100644
|
a
|
b
|
function the_widget( $widget, $instance = array(), $args = array() ) { |
| 1044 | 1044 | $instance = wp_parse_args($instance); |
| 1045 | 1045 | |
| 1046 | 1046 | /** |
| | 1047 | * Filter the settings for a particular widget instance. |
| | 1048 | * |
| | 1049 | * Returning false will effectively short-circuit display of the widget. |
| | 1050 | * |
| | 1051 | * @since 2.8.0 |
| | 1052 | * |
| | 1053 | * @param array $instance The current widget instance's settings. |
| | 1054 | * @param WP_Widget $widget_obj The current widget instance. |
| | 1055 | * @param array $args An array of default widget arguments. |
| | 1056 | */ |
| | 1057 | $instance = apply_filters( 'widget_display_callback', $instance, $widget_obj, $args ); |
| | 1058 | |
| | 1059 | if ( false === $instance ) { |
| | 1060 | return; |
| | 1061 | } |
| | 1062 | |
| | 1063 | /** |
| 1047 | 1064 | * Fires before rendering the requested widget. |
| 1048 | 1065 | * |
| 1049 | 1066 | * @since 3.0.0 |