Title: priority
Last modified: October 16, 2023

---

# priority

 *  [franksysgfx](https://wordpress.org/support/users/franksysgfx/)
 * (@franksysgfx)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/priority-5/)
 * One question, if this code to hide elements from the admin bar has priority 999:
 * add_action( ‘admin_bar_menu’, ‘ocultar_boton_vista_previa’, 999 );
   function ocultar_boton_vista_previa(
   $wp_admin_bar ) {$wp_admin_bar->remove_node( ‘view-site’ );}
 * So in the plugin priority should I change the default to 10? What if there are
   several priorities in the same code? What number should I put, the lowest, the
   highest or should I keep it at 10?

Viewing 1 replies (of 1 total)

 *  Plugin Author [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * (@bungeshea)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/priority-5/#post-17180586)
 * The snippet priority is separate from the hook priority, in your example.
 * The snippet priority just determines the order the snippets are loaded – so if
   you had two hooks with the hook priority 999, then the snippet which is loaded
   first would call `add_action` first.
 * Generally, you don’t need to worry about snippet priority unless you have one
   snippet which relies on another, or overrides the result of another.

Viewing 1 replies (of 1 total)

The topic ‘priority’ is closed to new replies.

 * ![](https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878)
 * [Code Snippets](https://wordpress.org/plugins/code-snippets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/code-snippets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/code-snippets/)
 * [Active Topics](https://wordpress.org/support/plugin/code-snippets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/code-snippets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/code-snippets/reviews/)

## Tags

 * [priority](https://wordpress.org/support/topic-tag/priority/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * Last activity: [2 years, 6 months ago](https://wordpress.org/support/topic/priority-5/#post-17180586)
 * Status: not a support question