Template Body to posts

时间:2014-12-05 作者:user2945872

有没有可能在默认的wordpress帖子中添加正文模板?因此,每当我创建帖子时,它都应该作为模板出现在正文文本字段中

1 个回复
SO网友:BetterStudio

只需将以下代码添加到主题函数中。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/

结束