Plugin Contributor
bb
(@doanducanh)
Hi @jnicol ,
Currently, the slim_seo_admin_columns_post filter doesn’t support removing the Redirect column.
If you’d like to remove the Redirect column programmatically, you can use the WordPress manage_{$post_type}_posts_columns filter. For posts, for example:
add_filter( 'manage_post_posts_columns', function( $columns ) {
unset( $columns['redirect'] );
return $columns;
}, 10000 );
Alternatively, you can hide the Redirect column by opening Screen Options at the top of the Posts screen and unchecking Redirect.
Regards,
-
This reply was modified 6 days, 13 hours ago by
bb.
-
This reply was modified 6 days, 13 hours ago by
bb.
-
This reply was modified 6 days, 13 hours ago by
bb.