39

How to Remove the Trash Button from WordPress Page List

Powered by WPCodeBox

Learn how to remove the trash button from your WordPress page list with this snippet.


<?php 

add_filter( 'page_row_actions', function ( $actions ){
    
    if( get_post_type() === 'page' ) {
        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.