WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
819 | * containing the widget object. Fired on the back end, `$callback` |
820 | * is 'wp_widget_control', see `$_callback`. |
821 | * @type array $params An associative array of multi-widget arguments. |
822 | * @type string $classname CSS class applied to the widget container. |
823 | * @type string $description The widget description. |
824 | * @type array $_callback When the hook is fired on the back end, `$_callback` is populated |
825 | * with an array containing the widget object, see `$callback`. |
826 | * } |
827 | */ |
828 | do_action( 'dynamic_sidebar', $wp_registered_widgets[ $id ] ); |
829 |
|
830 | if ( is_callable( $callback ) ) { |
831 | call_user_func_array( $callback, $params ); |
832 | $did_one = true; |
833 | } |
834 | } |
835 |
|
836 | if ( ! is_admin() && ! empty( $sidebar['after_sidebar'] ) ) { |
837 | echo $sidebar['after_sidebar']; |
Line | Code |
1965 |
|
1966 | /** This filter is documented in wp-includes/widgets.php */ |
1967 | $params = apply_filters( 'dynamic_sidebar_params', $params ); |
1968 |
|
1969 | $callback = $wp_registered_widgets[ $widget_id ]['callback']; |
1970 |
|
1971 | ob_start(); |
1972 |
|
1973 | /** This filter is documented in wp-includes/widgets.php */ |
1974 | do_action( 'dynamic_sidebar', $wp_registered_widgets[ $widget_id ] ); |
1975 |
|
1976 | if ( is_callable( $callback ) ) { |
1977 | call_user_func_array( $callback, $params ); |
1978 | } |
1979 |
|
1980 | return ob_get_clean(); |
1981 | } |
1982 |
|
1983 | /** |