You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide the ability to create custom bulk and row actions with PostTypes. An example of the API could be as follows, but needs further exploration.
// Create a basic event post type.$event = newPostType('event');
// Create a 'Cancel Event' Bulk Actions$event->actions()->bulk(
'cancel-event', // The unique action name.__('Cancel Event'), // The action label.function($redirect_url, $action, $post_ids) { // Callback to handle the bulk action request.// Do stuffreturn$redirect_url;
},
'upload_files'// Optional: Set the capability required to use the bulk action.
);
The text was updated successfully, but these errors were encountered:
Provide the ability to create custom bulk and row actions with PostTypes. An example of the API could be as follows, but needs further exploration.
The text was updated successfully, but these errors were encountered: