dynamic_sidebar_after

dynamic_sidebar_after

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.5.2

do_action('dynamic_sidebar_after') is found 2 times:

  • /wp-includes/widgets.php line 709
    	if ( empty( $wp_registered_sidebars[ $index ] ) || empty( $sidebars_widgets[ $index ] ) || ! is_array( $sidebars_widgets[ $index ] ) ) {
    		/** This action is documented in wp-includes/widget.php */
    		do_action( 'dynamic_sidebar_before', $index, false );
    		/** This action is documented in wp-includes/widget.php */
    		do_action( 'dynamic_sidebar_after', $index, false );
    		/** This filter is documented in wp-includes/widget.php */
    		return apply_filters( 'dynamic_sidebar_has_widgets', false, $index );
    	}
    
    	$sidebar = $wp_registered_sidebars[ $index ];
    
    
  • /wp-includes/widgets.php line 858
    	 * @param int|string $index       Index, name, or ID of the dynamic sidebar.
    	 * @param bool       $has_widgets Whether the sidebar is populated with widgets.
    	 *                                Default true.
    	 */
    	do_action( 'dynamic_sidebar_after', $index, true );
    
    	/**
    	 * Filters whether a sidebar has widgets.
    	 *
    	 * Note: The filter is also evaluated for empty sidebars, and on both the front end
    	 * and back end, including the Inactive Widgets sidebar on the Widgets screen.
    

See this hook used in plugins: