WordPress – add help text under category list(right side) in post edit page
There is not available action and filter hook to modify of taxonomy meta boxes html like admin_post_thumbnail_html. so here is a trick to add descrition below category.you have to create new metabox for help then move to category div. # Add new meta box for help description add_action( ‘add_meta_boxes’, ‘add_help_desc_meta_box’, 0 ); function add_help_desc_meta_box() { … Read more