Title: johnhsu's Replies | WordPress.org

---

# johnhsu

  [  ](https://wordpress.org/support/users/johnhsu/)

 *   [Profile](https://wordpress.org/support/users/johnhsu/)
 *   [Topics Started](https://wordpress.org/support/users/johnhsu/topics/)
 *   [Replies Created](https://wordpress.org/support/users/johnhsu/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/johnhsu/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/johnhsu/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/johnhsu/engagements/)
 *   [Favorites](https://wordpress.org/support/users/johnhsu/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [How to let Hierarchical taxonomy display like Non-Hierarchical taxonomy?](https://wordpress.org/support/topic/how-to-let-hierarchical-taxonomy-display-like-non-hierarchical-taxonomy/)
 *  Thread Starter [johnhsu](https://wordpress.org/support/users/johnhsu/)
 * (@johnhsu)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/how-to-let-hierarchical-taxonomy-display-like-non-hierarchical-taxonomy/#post-9124315)
 * I add code like this， it could display in the post edit screen.
    But when i 
   add new tag in it, the post couldn’t save the tag. How to fix it? Thanks for 
   help~~~
 *     ```
       function myplugin_add_custom_box() {
   
       add_meta_box('tagsdiv-depart','depart','post_tags_meta_box','post','side','core',array( 'taxonomy' => 'depart'));
   
       }
   
       add_action( 'add_meta_boxes', 'myplugin_add_custom_box' );
       ```
   

Viewing 1 replies (of 1 total)