Skip to content

Instantly share code, notes, and snippets.

@fernandofuly
Last active August 29, 2015 14:01
Show Gist options
  • Save fernandofuly/e46c800d9fac948f1d06 to your computer and use it in GitHub Desktop.
Save fernandofuly/e46c800d9fac948f1d06 to your computer and use it in GitHub Desktop.
Remove "Quick Edit" from Custom Post Types
// Remove "Quick Edit" from Custom Post Types
function remove_quick_edit( $actions ) {
global $post;
if( $post->post_type == 'Custom_Post_Name_Here' ) {
unset($actions['inline hide-if-no-js']);
}
return $actions;
}
if (is_admin()) {
add_filter('post_row_actions','remove_quick_edit',10,2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment