Skip to content

Instantly share code, notes, and snippets.

@gvgvgvijayan
Created January 9, 2021 16:04
Show Gist options
  • Save gvgvgvijayan/49ba0310055f2cfd7d2287767d1f7815 to your computer and use it in GitHub Desktop.
Save gvgvgvijayan/49ba0310055f2cfd7d2287767d1f7815 to your computer and use it in GitHub Desktop.
<?php
...
/**
* Get list columns.
*
* @return array
*/
public function get_columns() {
return array(
'cb' => '<input type="checkbox"/>',
'title' => __( 'Title', 'admin-table-tut' ),
'type' => __( 'Type', 'admin-table-tut' ),
'author' => __( 'Author', 'admin-table-tut' ),
'date' => __( 'Date', 'admin-table-tut' ),
);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment