New answers tagged post-editor
1
Place this code in your functions.php theme (or child theme) file. It uses jQuery to add a new box above the Category div (<div id="categorydiv" class="postbox " >).
add_action( 'admin_footer-post.php', 'wpse_99252_add_categories_title_attribute' );
add_action( 'admin_footer-post-new.php', 'wpse_99252_add_categories_title_attribute' );
/**
* Add ...
2
To provide a full code example based on Andrew's answer ... I needed a way to include a "Deck" (aka subhead) to my posts; I wanted the deck field to appear after the main title bar.
/**
* Add a "deck" (aka subhead) meta box to post page(s) and position it
* under the title.
*
* @todo Move to class.
* @see ...
Top 50 recent answers are included