making pousible to turn off the date column and actions will also be great to have a online line height row in wp-list-table ...much cleaner!!
function remove_date_column($columns) {
unset($columns['date']);
return $columns;
}
add_filter('manage_potential_posts_columns', 'remove_date_column', 10, 1);
function remove_all_relatie_post_row_actions($actions, $post) {
if ('potential' === $post->post_type) {
return array(); // Verwijdert alle row-actions
}
return $actions;
}