如果你希望每次写日志时都插入相同的文字内容,例如告诉读者订阅您的站点,通过下面的代码,会自动在编辑器中插入你想显示的内容。

将下面代码加到你的主题functions.php模版中:

1
2
3
4
5
6
7
8
9
10
11
12
<?php

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

$content = "This is some custom content I'm adding to the post editor because I hate re-typing it.";

return $content;
}

?>

其中的文字你可以修改成任意的内容。

这是一个很蛋疼的小功能,但却是很实用的的技术。

原文地址