Created
January 17, 2021 09:12
-
-
Save gvgvgvijayan/e5d8d02c361046a6ce6c7bc647825475 to your computer and use it in GitHub Desktop.
This gist is used in the tutorial https://www.vijayan.in/how-to-create-custom-table-list-in-wordpress-admin-page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
... | |
/** | |
* Get bulk actions. | |
* | |
* @return array | |
*/ | |
public function get_bulk_actions() { | |
return array( | |
'trash' => __( 'Move to Trash', 'admin-table-tut' ), | |
); | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment