upgrader_pre_download хук-фильтр . WP 3.7.0
Filters whether to return the package.
Использование
add_filter( 'upgrader_pre_download', 'filter_function_name_225', 10, 4 ); function filter_function_name_225( $reply, $package, $this, $hook_extra ){ // filter... return $reply; }
- $reply(true/false)
- Whether to bail without returning the package.
По умолчанию: false - $package(строка)
- The package file name.
- $this(WP_Upgrader)
- The WP_Upgrader instance.
- $hook_extra(массив)
- Extra arguments passed to hooked filters.
Список изменений
С версии 3.7.0 | Введена. |
С версии 5.5.0 | Added the $hook_extra parameter. |
Где вызывается хук
upgrader_pre_download
wp-admin/includes/class-wp-upgrader.php 268
$reply = apply_filters( 'upgrader_pre_download', false, $package, $this, $hook_extra );