I have a custom post type that I'm just using just to keep data in but I sometimes share it with others, and I don't want any confusion when the "view" link appears in the admin column.
Is there a way of removing that?
.jpg .jpg
I have a custom post type that I'm just using just to keep data in but I sometimes share it with others, and I don't want any confusion when the "view" link appears in the admin column.
Is there a way of removing that?
http://img.skitch/20110421-des28mtj4br3aeyfxnypnkghsy.jpg http://img.skitch/20110421-des28mtj4br3aeyfxnypnkghsy.jpg
Share Improve this question edited Apr 21, 2011 at 15:01 Chris_O 20.6k5 gold badges62 silver badges96 bronze badges asked Apr 21, 2011 at 14:25 MarcoMarco 2091 gold badge5 silver badges13 bronze badges2 Answers
Reset to default 24add_filter( 'post_row_actions', 'remove_row_actions', 10, 1 );
function remove_row_actions( $actions )
{
if( get_post_type() === 'my_cpt' )
unset( $actions['view'] );
return $actions;
}
Should see you through :)
The $actions array consists of the following:
$actions['edit']
$actions['inline hide-if-no-js']
$actions['trash']
$actions['view']
To modify users grid view 'user_row_actions
' filter can be used.
For future reference.
Is there a way to remove the "View" link under the users in the backend User panel? All users are listed with an Edit, Delete, View link. I'm looking to remove that View link. Much appreciated.