无法为TinyMCE添加“占位符”,但可以为新创建的帖子设置默认内容。你所需要的只是上钩default_content
过滤并返回格式化的段落:
add_filter( \'default_content\', \'wpse8170_get_default_instructions\', 10, 2 );
function wpse8170_get_default_instructions( $content, WP_Post $post ) {
if ( $post->post_type == \'post\' ) {
$content = \'.... your content ....\';
}
return $content;
}