您可以更改要将默认内容应用到的任何帖子类型的“帖子”。
add_filter( \'default_content\', \'wpse57907_default_content\', 10, 2 );
function wpse57907_default_content( $content, $post ) {
if ( \'post\' == $post->post_type )
$content = \'Use this area to write an introduction to the course...\';
return $content;
}
编辑我不确定您是否可以将占位符文本添加到tinymce编辑器中。下面的方法将向基础文本区域添加一个占位符(您可以在“html”选项卡上查看它,即将成为“文本”选项卡):
add_filter(\'the_editor\',\'wpse57907_add_placeholder\');
function wpse57907_add_placeholder( $html ){
$html = preg_replace(\'/<textarea/\', \'<textarea placeholder="my place holder text" \', $html);
return $html;
}
但这并没有出现在可视化编辑器上(正如我所说,我不确定占位符是否适用于TinyMCE-如果有人知道如何使用,请发表评论)。