Skip to content

Instantly share code, notes, and snippets.

@yuliyang
Created October 18, 2021 03:48
Show Gist options
  • Save yuliyang/393734405ee7bea5a49ab3a64852ab61 to your computer and use it in GitHub Desktop.
Save yuliyang/393734405ee7bea5a49ab3a64852ab61 to your computer and use it in GitHub Desktop.
[Toolset] Hide Trash Button
<?php
// hide toolset trash button for relationship CPT
add_action('admin_head', 'ching_admin_css');
function ching_admin_css() {
echo '<style>
.wp-admin.post-type-recipe .toolset-listing-wrapper .wp-list-table .row-actions .delete {
display: none;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment