/**

    *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);