有一个名为default_content
. 它完全按照名字说的做。:)
示例:
add_filter( \'default_content\', \'t5_preset_editor_content\', 10, 2 );
/**
* Fills the default content for post type \'post\' if it is not empty.
*
* @param string $content
* @param object $post
* @return string
*/
function t5_preset_editor_content( $content, $post )
{
if ( \'\' !== $content or \'post\' !== $post->post_type )
{
return $content;
}
return \'This is the <em>default</em> content. You may customize it.\';
}
如您所见,帖子类型已经可用,因此您可以为不同的帖子类型设置不同的默认值。
相关筛选器包括default_title
和default_excerpt
. 它们的工作方式相同。
您还可以向某人发送带有参数的链接content
, post_title
和excerpt
:
http://example.com/wp-admin/post-new.php?content=hello+world%21&post_title=Sample+Title&excerpt=custom+excerpt
输出: