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
710      }
711
712      $sidebars_widgets = wp_get_sidebars_widgets();
713      if ( empty( $wp_registered_sidebars[ $index ] ) || empty( $sidebars_widgets[ $index ] ) || ! is_array( $sidebars_widgets[ $index ] ) ) {
714           /** This action is documented in wp-includes/widget.php */
715           do_action( 'dynamic_sidebar_before', $index, false );
716           /** This action is documented in wp-includes/widget.php */
717           do_action( 'dynamic_sidebar_after', $index, false );
718           /** This filter is documented in wp-includes/widget.php */
719           return apply_filters( 'dynamic_sidebar_has_widgets', false, $index );
720      }
721
722      $sidebar = $wp_registered_sidebars[ $index ];
723
724      $sidebar['before_sidebar'] = sprintf( $sidebar['before_sidebar'], $sidebar['id'], $sidebar['class'] );
725
726      /**
727       * Fires before widgets are rendered in a dynamic sidebar.
728       *
 
Line Code
871       * Note: The filter is also evaluated for empty sidebars, and on both the front end
872       * and back end, including the Inactive Widgets sidebar on the Widgets screen.
873       *
874       * @since 3.9.0
875       *
876       * @param bool       $did_one Whether at least one widget was rendered in the sidebar.
877       *                            Default false.
878       * @param int|string $index   Index, name, or ID of the dynamic sidebar.
879       */
880      return apply_filters( 'dynamic_sidebar_has_widgets', $did_one, $index );
881 }
882
883 /**
884  * Determines whether a given widget is displayed on the front end.
885  *
886  * Either $callback or $id_base can be used
887  * $id_base is the first argument when extending WP_Widget class
888  * Without the optional $widget_id parameter, returns the ID of the first sidebar
889  * in which the first instance of the widget with the given callback or $id_base is found.