16

How to Add a Plugins Link to the WordPress Admin Bar

Powered by WPCodeBox

Easily add a direct link to the WordPress plugins page in your admin bar for quick access and efficient site management.


<?php 

add_action( 'admin_bar_menu', function($wp_admin_bar) {
    
    $wp_admin_bar->add_node( array(
        'id' => 'plugins',
        'title' => 'Plugins',
        'href' => esc_url( admin_url( 'plugins.php' ) ),
        'meta' => false
    ));
    
}, 999);

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.