Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. /**
  3.  * For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API.
  4.  *
  5.  * @package WordPress
  6.  * @subpackage brickwall
  7.  * @since 2011
  8.  */
  9.  
  10. if (!is_admin() && !current_user_can('add_users')){
  11.     wp_deregister_script( 'admin-bar' );
  12.     wp_deregister_style( 'admin-bar' );
  13.     remove_action('wp_footer','wp_admin_bar_render',1000);
  14. }
  15.  
  16.  
  17. ?>
  18.  
  19. <?php
  20. if (function_exists('register_sidebars'))
  21.     register_sidebars(1);
  22.  
  23. ?>