Home › Forums › WordPress › Admin Customization › Add text at the top of Add post.
Tagged: above, add, admin, custom, post, text, top, wordpress, wysywg
/** * Notice above the text editor for Members area. * */ function l7w_edit_form_after_title() { if('custom-post-type' == get_post_type()){ echo '<h2>Text here</h2>'; } } add_action( 'edit_form_after_title', 'l7w_edit_form_after_title' );
You must be logged in to reply to this topic.