ACF_Admin::current_screen()
Adds custom functionality to "ACF" admin pages.
Метод класса: ACF_Admin{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$ACF_Admin = new ACF_Admin(); $ACF_Admin->current_screen( $screen );
- $screen (обязательный)
- -
Список изменений
С версии 5.9.0 | Введена. |
Код ACF_Admin::current_screen() ACF Admin::current screen ACF 6.0.4
function current_screen( $screen ) { // Determine if the current page being viewed is "ACF" related. if ( isset( $screen->post_type ) && $screen->post_type === 'acf-field-group' ) { add_action( 'in_admin_header', array( $this, 'in_admin_header' ) ); add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); $this->setup_help_tab(); } }