Created
February 29, 2024 16:34
-
-
Save jb510/fb02c57e4456b515f4eb74e13aa458c0 to your computer and use it in GitHub Desktop.
Revisions
-
jb510 created this gist
Feb 29, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <?php /** * Customize admin bar items * * @since 1.0 * @author Jon Brown * @global array $wp_admin_bar */ function s9_customize_admin_bar_items() { global $wp_admin_bar; if ( current_user_can( 'activate_plugins' ) ) { $wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'plugins', 'title' => __( 'Plugins' ), 'href' => admin_url( 'plugins.php' ) ) ); } } add_action( 'wp_before_admin_bar_render', 's9_customize_admin_bar_items' );