print_column_headers

函数
print_column_headers ( $screen, $with_id = true )
参数
  • (string|WP_Screen) $screen The screen hook name or screen object.
    Required:
  • (bool) $with_id Whether to set the ID attribute or not.
    Required:
    Default: true
定义位置
相关方法
get_column_headersregister_column_headerswp_admin_headersget_custom_headerrest_send_cors_headers
引入
2.7.0
弃用
-

print_column_headers: 这个动作用来打印WordPress管理区的列标题。

为一个特定的屏幕打印栏目头。

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 );
}

常见问题

FAQs
查看更多 >