Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wordpress remove quick edit custom post type

function remove_quick_edit_links( $actions, $post ) {

    unset( $actions[ 'inline hide-if-no-js' ] );

    return $actions;

}
add_filter( 'post_row_actions', 'remove_quick_edit_links', 10, 2 );
 
PREVIOUS NEXT
Tagged: #wordpress #remove #quick #edit #custom #post #type
ADD COMMENT
Topic
Name
9+9 =