WordPress 编辑器设置自定义默认内容 January 4, 2026 • 0评论 • 5 次阅读 01 04 主题目录下的 functions.php 添加以下字段: `add_filter('default_content', 'my_editor_content'); function my_editor_content($content) { $content = "此地方填写编辑的内容"; return $content;`