mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
15 lines
498 B
Text
15 lines
498 B
Text
add_action('init', 'sp_remove_bulk_edit_actions', 100);
|
|
function sp_remove_bulk_edit_actions() {
|
|
if (current_user_can('manage_options')) {
|
|
return;
|
|
}
|
|
foreach (seopress_get_post_types() as $key => $value) {
|
|
remove_all_filters('bulk_actions-edit-'.$key, 10);
|
|
}
|
|
foreach (seopress_get_taxonomies() as $key => $value) {
|
|
remove_all_filters('bulk_actions-edit-'.$key, 10);
|
|
}
|
|
if ( is_plugin_active( 'woocommerce/woocommerce.php' )) {
|
|
remove_all_filters('bulk_actions-edit-product', 10);
|
|
}
|
|
}
|