本文转载自:http://zmingcx.com/set-the-default-editor-for-wordpress-content.html
写文章的时候自动添加你想要的内容 对于经常要放置相同内容的比较有用
将下面代码加到你的主题functions.php模版中:
1 2 3 4 5 6 |
add_filter( 'default_content', 'my_editor_content' ); function my_editor_content( $content ) { $content = "如果您喜欢这篇文章,欢迎分享订阅。"; return $content; } |
其中的文字你可以修改成任意的内容。