Title: Custom Node for sidebar
Last modified: August 21, 2016

---

# Custom Node for sidebar

 *  [ElwoodP](https://wordpress.org/support/users/elwoodp/)
 * (@elwoodp)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/)
 * Hi,
 * Is it possible to add a custom node to the sidebar you can for the admin bar?
 * [https://wordpress.org/plugins/wp-admin-ui-customize/](https://wordpress.org/plugins/wp-admin-ui-customize/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [gqevu6bsiz](https://wordpress.org/support/users/gqevu6bsiz/)
 * (@gqevu6bsiz)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/#post-4700337)
 * Hi,
    I’m sorry for late reply. And, Sorry I tried to add a custom menu to the
   Sidebar several times. But, I was not able to add custom menu of Sidebar.
 * I will try again when I have time.
 * Thank you for your comment.
 * Thanks,
    gqevu6bsiz
 *  Thread Starter [ElwoodP](https://wordpress.org/support/users/elwoodp/)
 * (@elwoodp)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/#post-4700344)
 * Hi gqevu6bsiz,
    No problem, I appreciate your reply. I look forward to the feature
   if you can add it.
 * In the meantime I’m trying to add manually:
 *     ```
       function my_admin_menu() {
           global $submenu;
           $submenu['edit.php'][] = array('Menu Title', 'manage_options', 'url_to_cool_stuff');
       }
       add_action('admin_menu', 'my_admin_menu');
       ```
   
 * But this isn’t updating custom menu. Can you advise?
 *  Plugin Author [gqevu6bsiz](https://wordpress.org/support/users/gqevu6bsiz/)
 * (@gqevu6bsiz)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/#post-4700350)
 * Hi ElwoodP,
 * Thank you for your reply and your code.
    I’m sorry I was explain not enough.
 * For how to manually add the menu of Sidemenu,
 * 1: If you want to add to **ignore** the WP Admin UI Customie,
    You can add it
   to change the **priority** and **URL**. e.g.
 *     ```
       function my_admin_menu() {
       	global $submenu;
       	$submenu['edit.php'][] = array('Menu Title', 'manage_options', 'edit.php?post_type=url_to_cool_stuff');
       }
       add_action('admin_head', 'my_admin_menu', 100);
       ```
   
 * [Ignore settings screen](http://gqevu6bsiz.chicappa.jp/?attachment_id=1468)
 * 2: If you want to **setting with** the WP Admin UI Customize,
    You can add it
   to change the **action hook** and **function of add menu**. e.g.
 *     ```
       function my_admin_menu() {
       	add_posts_page( 'Page Title', 'Menu Title', 'manage_options', 'url_to_cool_stuff', 'url_to_cool_stuff' );
       }
       add_action('admin_menu', 'my_admin_menu');
       ```
   
 * [With screen](http://gqevu6bsiz.chicappa.jp/?attachment_id=1469)
 * I can not be still, add to **“External Links”**.
 * If you have any questions, please free feel to ask.
 * Thanks,
    gqevu6bsiz
 *  Thread Starter [ElwoodP](https://wordpress.org/support/users/elwoodp/)
 * (@elwoodp)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/#post-4700352)
 * Thanks gqevu6bsiz, that’s a very helpful answer. I appreciate the support.
 *  Plugin Author [gqevu6bsiz](https://wordpress.org/support/users/gqevu6bsiz/)
 * (@gqevu6bsiz)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/#post-4700360)
 * I’m glad I was of help to you.
    If you have any questions, please free feel to
   ask.
 * Thanks,
    gqevu6bsiz

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Custom Node for sidebar’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-admin-ui-customize_dadada.svg)
 * [WP Admin UI Customize](https://wordpress.org/plugins/wp-admin-ui-customize/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-admin-ui-customize/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-admin-ui-customize/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-admin-ui-customize/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-admin-ui-customize/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-admin-ui-customize/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [gqevu6bsiz](https://wordpress.org/support/users/gqevu6bsiz/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/custom-node-for-sidebar/#post-4700360)
 * Status: not resolved