To add display Title before title field in wordpress admin post
1) Open your theme functions page
add below code
function ps_edit_form_top() { echo ' </code></pre> <h2>Post Name</h2> '; } add_action( 'edit_form_top', 'ps_edit_form_top');
To add display Title before Content Editor field in wordpress admin post
add below code
function add_content_before_editor_post() { echo '</pre><h2>Content/Description</h2>'; } add_action('edit_form_after_title', 'add_content_before_editor_post' );