Tagged Questions
0
votes
1answer
1k views
how to make custom bulk actions for a WP_List_Table (core class)
I am using the WP_List_Table class and I added the links for the actions like this:
function get_bulk_actions() {
$actions = array();
$actions['approv'] ='<a href="#">'.__( ...
3
votes
2answers
971 views
How to implement bulk actions in my plugin?
I am developing a WordPress plugin.
This plugin displays a list of courses. Now I want to implement the bulk actions just like in other plugins. From where I can apply the delete and edit actions to ...