Admin Bar Site ID

چۈشەندۈرۈش

Display the current site ID in the WordPress admin bar on multisite networks.

Bug Reports

Do you want to report a bug or suggest a feature for Admin Bar Site ID? Best to do so in the Admin Bar Site ID repository on GitHub.

FAQ

I do not see the site ID in the admin bar?

The admin bar item is only added on multisite installs for users with the manage_options capability.

Show the site ID to users other than Administrators

A pluginpizza_admin_bar_site_id_capability filter exists that allows you to override the capability required to add the admin bar menu item.

`

// Change the admin bar site ID capability.
add_filter(
›pluginpizza_admin_bar_site_id_capability‹,
›prefix_admin_bar_site_id_capability‹
);

/**
* Change the admin bar site ID capability.
*
* @param string $capability The capability required to add the site ID admin
* bar menu item.
* @return string
*/
function prefix_admin_bar_site_id_capability( $capability ) {

/*
 * This example changes the capablity to 'edit_posts'. For an overview
 * of default capabilities, visit the Roles and Capabilities support
 * article: https://wordpress.org/support/article/roles-and-capabilities/
 */
return 'edit_posts';

}
`

باھالاشلار

بۇ قىستۇرمىغا تېخى باھا يېزىلمىدى.

تۆھپىكار ۋە ئىجادكار

«Admin Bar Site ID» كودى ئوچۇق يۇمشاق دېتال. تۆۋەندىكى كىشىلەر بۇ قىستۇرمىغا تۆھپە قوشقان.

تۆھپىكار

«Admin Bar Site ID» نى تىلىڭىزغا تەرجىمە قىلىڭ

ئىجادىيەتكە قىزىقامسىز؟

كودقا كۆز يۈگۈرتۈپ، SVN خەزىنە تەكشۈرۈپ ياكى RSSئارقىلىق ئىجادىيەت خاتىرىسىگە مۇشتەرى بولغىلى بولىدۇ.

ئۆزگىرىش خاتىرىسى

2.0.0

Release Date: July 26, 2024

  • Renamed the capability filter to pluginpizza_admin_bar_site_id_capability.

1.0.0

Release Date: November 13, 2023

  • Initial release.