Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Created April 11, 2016 12:15
Show Gist options
  • Save SirDarcanos/da1c464cf27c51400d3aaa0135d1203f to your computer and use it in GitHub Desktop.
Save SirDarcanos/da1c464cf27c51400d3aaa0135d1203f to your computer and use it in GitHub Desktop.
add_filter( 'post_row_actions', 'remove_duplicate_capability', 20, 2 );
add_filter( 'page_row_actions', 'remove_duplicate_capability', 20, 2 );
function remove_duplicate_capability( $actions, $post ) {
if ( $post->post_type != 'product' ) {
return $actions;
}
if ( isset( $actions['duplicate'] ) ) {
unset( $actions['duplicate'] );
}
return $actions;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment