Jump to content

New sidebar in wordpress site


ulises2010

Recommended Posts

Hi, I need to show a diferent sidebar for logued an unlogued visitors.
 
I try this:
 
I create a new sidebar in functions.php whit this code:
 
register_sidebar(array(
		'name' => 'Sidebar para logueados',
		'id' => 'sidebar-logueados',
		'before_widget' => '',
		'after_widget' => '</div> <!-- end .widget -->',
		'before_title' => '<h4 class="main-title widget-title">',
		'after_title' => '</h4><div class="widget">',
    ));
Whit this, I have a new sidebar under aparence-->widgets where I can put difernts widgets
 
After, I go to the page template (page.php) and change this code
 
<?php get_sidebar(); ?>

 whit this one

 
<?php
get_currentuserinfo() ;
global $user_level;
if ($user_level > 0) {
echo get_sidebar('sidebar-logueados');;
} else {
echo get_sidebar();;
}
?>
I think all is ok, but don't works.... can anybody help me?
 
Thanks
Edited by ulises2010
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.