get_sidebar хук-событиеWP 2.2.0

Fires before the sidebar template file is loaded.

Использование

add_action( 'get_sidebar', 'wp_kama_get_sidebar_action', 10, 2 );

/**
 * Function for `get_sidebar` action-hook.
 * 
 * @param string|null $name Name of the specific sidebar file to use. Null for the default sidebar.
 * @param array       $args Additional arguments passed to the sidebar template.
 *
 * @return void
 */
function wp_kama_get_sidebar_action( $name, $args ){

	// action...
}
$name(строка|null)
Name of the specific sidebar file to use. Null for the default sidebar.
$args(массив)
Additional arguments passed to the sidebar template.

Список изменений

С версии 2.2.0 Введена.
С версии 2.8.0 The $name parameter was added.
С версии 5.5.0 The $args parameter was added.

Где вызывается хук

get_sidebar()
get_sidebar
wp-includes/general-template.php 126
do_action( 'get_sidebar', $name, $args );

Где используется хук в WordPress

Использование не найдено.