答案 0 :(得分:1)
您可以使用以下技巧-
add_action( 'load-edit.php', function()
{
global $typenow;
// check post type
if( 'post' !== $typenow )
return;
// Active Mine tab
if( !isset( $_GET['post_status'] ) || !isset( $_GET['all_posts'] ) )
{
wp_redirect( admin_url('edit.php?post_type=post&author='. get_current_user_id() ) );
exit();
}
});