35

How to Remove the Trash Button from WordPress Posts

Powered by WPCodeBox

Learn how to easily remove the trash button from your WordPress post list, optimizing your site management.


<?php 

add_filter( 'post_row_actions', function ( $actions ){
    
    if( get_post_type() === 'post' ) {
        unset( $actions['trash'] );
    }
    
    return $actions;
});

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.