Custom_Image_Header::__construct
Constructor - Registers administration header callback.
Метод класса: Custom_Image_Header{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Custom_Image_Header = new Custom_Image_Header(); $Custom_Image_Header->__construct( $admin_header_callback, $admin_image_div_callback );
- $admin_header_callback(callable) (обязательный)
- Administration header callback.
- $admin_image_div_callback(callable)
- Custom image div output callback.
По умолчанию:empty string
Список изменений
| С версии 2.1.0 | Введена. |
Код Custom_Image_Header::__construct() Custom Image Header:: construct WP 6.9.4
public function __construct( $admin_header_callback, $admin_image_div_callback = '' ) {
$this->admin_header_callback = $admin_header_callback;
$this->admin_image_div_callback = $admin_image_div_callback;
add_action( 'admin_menu', array( $this, 'init' ) );
add_action( 'customize_save_after', array( $this, 'customize_set_last_used' ) );
add_action( 'wp_ajax_custom-header-crop', array( $this, 'ajax_header_crop' ) );
add_action( 'wp_ajax_custom-header-add', array( $this, 'ajax_header_add' ) );
add_action( 'wp_ajax_custom-header-remove', array( $this, 'ajax_header_remove' ) );
}