/**

    *WordPress 自定義文章型別分別給編輯器設定預設內容

    *https://www.weixiaoduo.com/post-default-content-title/

*/

functionBing_default_content($content,$post){

    switch($post->post_type){

        case'post':

            $content='文章的預設內容';

        break;

        case'page':

            $content='頁面的預設內容';

        break;

        case'pic':

            $content='圖片 (自定義的文章型別) 的預設內容';

        break;

    }

    return$content;

}

add_filter('default_content','Bing_default_content',10,2);