print_column_headers()
Prints column headers for a particular screen.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
print_column_headers( $screen, $with_id );
- $screen(строка|WP_Screen) (обязательный)
- The screen hook name or screen object.
- $with_id(true|false)
- Whether to set the ID attribute or not.
По умолчанию:true
Список изменений
| С версии 2.7.0 | Введена. |
Код print_column_headers() print column headers WP 6.9.4
function print_column_headers( $screen, $with_id = true ) {
$wp_list_table = new _WP_List_Table_Compat( $screen );
$wp_list_table->print_column_headers( $with_id );
}