Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: dynamic_sidebar_has_widgets

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
1160      }
1161
1162      $sidebars_widgets = wp_get_sidebars_widgets();
1163      if ( empty( $wp_registered_sidebars[ $index ] ) || empty( $sidebars_widgets[ $index ] ) || ! is_array( $sidebars_widgets[ $index ] ) ) {
1164           /** This action is documented in wp-includes/widgets.php */
1165           do_action( 'dynamic_sidebar_before', $index, false );
1166           /** This action is documented in wp-includes/widgets.php */
1167           do_action( 'dynamic_sidebar_after',  $index, false );
1168           /** This filter is documented in wp-includes/widgets.php */
1169           return apply_filters( 'dynamic_sidebar_has_widgets', false, $index );
1170      }
1171
1172      /**
1173       * Fires before widgets are rendered in a dynamic sidebar.
1174       *
1175       * Note: The action also fires for empty sidebars, and on both the front-end
1176       * and back-end, including the Inactive Widgets sidebar on the Widgets screen.
1177       *
1178       * @since 3.9.0
 
Line Code
1295       * and back-end, including the Inactive Widgets sidebar on the Widgets screen.
1296       *
1297       * @since 3.9.0
1298       *
1299       * @param bool       $did_one Whether at least one widget was rendered in the sidebar.
1300       *                            Default false.
1301       * @param int|string $index   Index, name, or ID of the dynamic sidebar.
1302       */
1303
1304      $did_one = apply_filters( 'dynamic_sidebar_has_widgets', $did_one, $index );
1305
1306      return $did_one;
1307 }
1308
1309 /**
1310  * Whether widget is displayed on the front-end.
1311  *
1312  * Either $callback or $id_base can be used
1313  * $id_base is the first argument when extending WP_Widget class