dynamic_sidebar, $wp_registered_widgets[ $id ]

dynamic_sidebar, $wp_registered_widgets[ $id ]

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: 7.0.3

do_action('dynamic_sidebar, $wp_registered_widgets[ $id ]') is found 1 times:

  • /wp-includes/widgets.php line 842
    		 *     @type array    $_callback   When the hook is fired on the back end, `$_callback` is populated
    		 *                                 with an array containing the widget object, see `$callback`.
    		 * }
    		 */
    		do_action( 'dynamic_sidebar', $wp_registered_widgets[ $id ] );
    
    		if ( is_callable( $callback ) ) {
    			call_user_func_array( $callback, $params );
    			$did_one = true;
    		}
    	}