Changeset 58978
- Timestamp:
- 09/03/2024 07:56:16 PM (5 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/admin-bar.php
r58297 r58978 63 63 * 64 64 * It includes the {@see 'admin_bar_menu'} action which should be used to hook in and 65 * add new menus to the admin bar. That way you can be sure that you are adding at most 66 * optimal point, right before the admin bar is rendered. This also gives you access to 67 * the `$post` global, among others. 65 * add new menus to the admin bar. This also gives you access to the `$post` global, 66 * among others. 68 67 * 69 68 * @since 3.1.0 … … 87 86 * Loads all necessary admin bar items. 88 87 * 89 * This is the hook used to add, remove, or manipulate admin bar items. 88 * This hook can add, remove, or manipulate admin bar items. The priority 89 * determines the placement for new items, and changes to existing items 90 * would require a high priority. To remove or manipulate existing nodes 91 * without a specific priority, use `wp_before_admin_bar_render`. 90 92 * 91 93 * @since 3.1.0
Note: See TracChangeset
for help on using the changeset viewer.