Skip to content

Instantly share code, notes, and snippets.

@kimsible
Created September 15, 2020 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimsible/50dfb5c2c83d5b31b5f8077311545b0d to your computer and use it in GitHub Desktop.
Save kimsible/50dfb5c2c83d5b31b5f8077311545b0d to your computer and use it in GitHub Desktop.
WordPress - Snippet - Remove quick edit
function remove_quick_edit($actions) {
unset($actions['inline hide-if-no-js']);
return $actions;
}
if (!current_user_can('manage_options')) {
add_filter('page_row_actions', 'remove_quick_edit', 10, 1);
add_filter('post_row_actions', 'remove_quick_edit', 10, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment