1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Wordpress Custom Sidebar

Discussion in 'WordPress' started by desertst0rm, Jul 31, 2008.

  1. #1
    Need help on Wordpress sidebar. My site has one sidebar, is it possible to add another sidebar the function or work differently? I only want to display 1 sidebar. I want to use a different sidebar for my search result page.

    Is it also possible to make my sidebar display additional pics or ads when the page or post is too long to avoid seeing blanks space on my sidebar.
     
    desertst0rm, Jul 31, 2008 IP
  2. MoT

    MoT Peon

    Messages:
    97
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hi, to register a new sidebar, go to your functions.php file in your theme folder and put in:
    
    if ( function_exists('register_sidebar') )
        register_sidebar(array(
            'name' => 'SIDEBARNAME',
            'before_widget' => '',
            'after_widget' => '',
            'before_title' => '',
            'after_title' => '',
        ));
    
    Code (markup):
    Replace SIDEBARNAME with whatever you want to call it

    Then wherever you want to display the sidebar:
    
    <?php
    if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('SIDEBARNAME') ) : ?>
         <p>This is what shows when no widgets are added.</p>	   
    <?php endif; ?>
    
    Code (markup):
    Hope it helps
     
    MoT, Jul 31, 2008 IP
  3. desertst0rm

    desertst0rm Peon

    Messages:
    330
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I already added sidebar2.php
    <div id="sidebar2">
    PHP:
    but it's not working. Do I still need to add it on stylesheet?
     
    desertst0rm, Jul 31, 2008 IP
  4. BANAGO

    BANAGO Active Member

    Messages:
    456
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #4
    You have to add it in the stylesheet for sure. Good Luck!
     
    BANAGO, Aug 1, 2008 IP