#主题目录下的functions.php添加以下字段:

 `add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

$content = "此地方填写编辑的内容";

return $content;`