只需将以下代码添加到主题函数中。php
function better_default_post_content( $content ){
if( empty( $content ) )
$content = "Default Template is here!";
return $content;
}
add_filter( \'the_editor_content\', \'better_default_post_content\' );
使用“the\\u editor\\u content”过滤器,您可以过滤WordPress TinyCME编辑器值以更改值。在这段代码中,我添加了一个过滤器。
如果你知道WordPress的动作过滤器,那就很简单了。您可以阅读以下操作筛选器:http://wpcandy.com/teaches/how-to-use-wordpress-hooks/