WordPress 3.5 新增瞭一對非常有用的掛鉤,可以快速在WordPress後臺文章編輯器的上方或下方添加提示內容,下面是一個簡單的例子,直接將代碼添加到主題的 functions.php 文件:
1 2 3 4 5 6 7 8 9 10 11 |
function below_the_title() { echo '<h3>在編輯器上方添加的提示內容</h3>'; } add_action( 'edit_form_after_title', 'below_the_title' ); function below_the_editor() { echo '<h4>在編輯器下方添加的提示內容</h4>'; } add_action( 'edit_form_after_editor', 'below_the_editor' ); |
function below_the_title() {
echo ‘<h3>在編輯器上方添加的提示內容</h3>’;
} add_action( ‘edit_form_after_title’, ‘below_the_title’ );
function below_the_editor() {
echo ‘<h4>在編輯器下方添加的提示內容</h4>’;
} add_action( ‘edit_form_after_editor’, ‘below_the_editor’ );
結果如下圖所示:
參考資料:http://www.doitwithwp.com/add-a-message-above-or-below-the-post-editor/