TinyMCEの周りに、フィルタフックが追加されました。
add_action( 'edit_form_after_editor', 'my_edit_form_after_editor' );
function my_edit_form_after_editor() {
echo "<p style=\"color:red;\">edit_form_after_editor</p>";
}
add_action( 'edit_form_after_title', 'my_edit_form_after_title' );
function my_edit_form_after_title() {
echo "<p style=\"color:red;\">hello edit_form_after_title</p>";
}
