WordPress 文本編輯器預設文字修改

在WordPress發表新文章時,常會需要加入參考網址,每次都打這串字覺得有些麻煩。如果新增文章時可以預設有這些字不是很好嗎?
查看了網頁原始碼
 

<div id="wp-content-editor-container" class="wp-editor-container">
<textarea class="wp-editor-area theEditor" rows="10" cols="40" name="content" id="content">
</textarea>
</div>

用系統預設文本編輯器時要修改wp-include/class-wp-editor.php 291行
在printf( $the_editor, $content );這行之前加入
 

//by sairwolf set default
if($content == "")
    $content = "參考網址:".$content;

 

如果是使用CKEditor外掛則要修改wp-content/plugins/ckeditor-for-wordpress/ckeditor_class.php 1171行

本篇發表於 wordpress。將永久鏈結加入書籤。