PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / trunk
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts vtrunk
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
← All changes | includes/class.admin-bar.php +5 -0 2.7.0trunk View file →
@@ -379,8 +379,13 @@
379 379 if ( ! current_user_can( 'manage_options' ) ) {
380 380 return;
381 381 }
382 382
383 + // Add a filter to allow disabling the admin bar menu.
384 + if ( ! apply_filters( 'winp_show_admin_bar_menu', true ) ) {
385 + return;
386 + }
387 +
383 388 // Get active snippets (static for now).
384 389 $this->collect_active_snippets();
385 390
386 391 $count = count( $this->active_snippets );