filtrod 2.5.0
dynamic_sidebar_params
Opis — z kodu źródłowego
Filters the parameters passed to a widget's display callback.
Note: The filter is evaluated on both the front end and back end, including for the Inactive Widgets sidebar on the Widgets screen.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$params | array | { @type array $args { An array of widget display arguments. @type string $name Name of the sidebar the widget is assigned to. @type string $id ID of the sidebar the widget is assigned to. @type string $description The sidebar description. @type string $class CSS class applied to the sidebar container. @type string $before_widget HTML markup to prepend to each widget in the sidebar. @type string $after_widget HTML markup to append to each widget in the sidebar. @type string $before_title HTML markup to prepend to the widget title when displayed. @type string $after_title HTML markup to append to the widget title when displayed. @type string $widget_id ID of the widget. @type string $widget_name Name of the widget. } @type array $widget_args { An array of multi-widget arguments. @type int $number Number increment used for multiples of the same widget. } } |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'dynamic_sidebar_params', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'dynamic_sidebar_params', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii