https://www.linsoftware.com/wordpress-edit-post-screen-hooks-visual-guide/
function ps_edit_form_top() { echo 'edit_form_top
'; } add_action( 'edit_form_top', 'ps_edit_form_top'); function ps_edit_form_after_title() { echo 'edit_form_after_title
'; } add_action( 'edit_form_after_title', 'ps_edit_form_after_title'); function ps_edit_form_after_editor() { echo 'edit_form_after_editor
'; } add_action( ‘edit_form_after_editor', 'ps_edit_form_after_editor' ); function ps_edit_form_advanced() { echo 'edit_form_advanced
'; } add_action( 'edit_form_advanced', ‘ps_edit_form_advanced' ); // If you want this content appears only on selected post_type, go through below codes: function ps_edit_form_top( $post_type ) { $screen = get_current_screen(); $post_type = $screen->post_type; if ( $post_type != 'post' ) return; echo 'edit_form_top
'; } add_action( 'edit_form_top', ‘ps_edit_form_top' );