Skip to content

Instantly share code, notes, and snippets.

@hykw
Created July 18, 2014 09:44
Show Gist options
  • Save hykw/27f9586f2e9af88afe56 to your computer and use it in GitHub Desktop.
Save hykw/27f9586f2e9af88afe56 to your computer and use it in GitHub Desktop.
wordpress: 投稿画面に注記を追加
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