WordPress发布“我的”

时间:2019-09-09 09:46:52

标签: wordpress

有人将wordpress post Mine设置为帖子列表中的默认视图吗?

enter image description here

如果是,您是怎么做到的?预先感谢。

1 个答案:

答案 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();
    }   
});