Created
July 18, 2014 09:44
-
-
Save hykw/27f9586f2e9af88afe56 to your computer and use it in GitHub Desktop.
wordpress: 投稿画面に注記を追加
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function after_title() { | |
echo '<p>これはタイトル下に表示される</p>'; | |
} | |
add_action( 'edit_form_after_title', 'after_title' ); | |
function after_editor() { | |
echo '<p>これはエディタ下に表示される</p>'; | |
} | |
add_action( 'edit_form_after_editor', 'after_editor' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment