Sidebar Per User Role

Plugin Banner

Sidebar Per User Role

by Bainternet

Download
Description

This Plugin lets you display a sidebar per user role automaticaly without any coding what so ever, and it works with any theme out of the box.

Any feedback or suggestions are welcome.

Also check out my other plugins
 

  • Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation.
  • Then activate the Plugin from Plugins page.
  • Done!
  1. User Role Sidebars

    User Role Sidebars

  2. Plugin option panel

    Plugin option panel

  3. Plugin help panel

    Plugin help panel

Usage: 

Either call the guest sidebar in your theme using :

 

<?php dynamic_sidebar( 'guest-sidebar' ); ?>

 

which will be replaced based on the user role.

 

Or use an existing sidebar you want replaced by adding this in your themes functions.php

 

add_action('after_theme_setup','replace_sidebar_');

function replace_sidebar_(){

    global $sidebars_per_role;
    $sidebars_per_role->sidebar_to_replace = 'ID-OF-YOUR-Sidebar';
}

0.3 Fixed naming issues
0.2 Fixed require_once error.
0.1 Initial relases.

Back to top