Currently i m using this shorocdes
add_filter( 'post_row_actions', 'remove_row_actions', 10, 1 );
function remove_row_actions( $actions )
{
if( get_post_type() === 'post' )
unset( $actions['edit'] );
return $actions;
}
for removing edit link from published post but this code is applied on all post states and i want to apply this filter only for published and pending post. can any one help me to apply this filter only for published and pending post instead of All posts