Created
October 18, 2021 03:48
-
-
Save yuliyang/393734405ee7bea5a49ab3a64852ab61 to your computer and use it in GitHub Desktop.
[Toolset] Hide Trash Button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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