no sidebar defined problem on widget

  • Unknown's avatar

    hi
    i have been practicing making my first wordpress theme.i came here with the problem no sidebar on the widget section, i have used following code in sidebar.php and function.php

    sidebar.php

    <div id=”navbarside” >
    <?php if ( !function_exists(‘dynamic_sidebar’)
    || !dynamic_sidebar() ) : ?>

    <ul class=”mainNav” >

  • <div class=”sidenavtop”>
    <h2 >Recent Post </h2>
    </div>
    <div id=”newsticker-demo”>
    <div class=”newsticker-jcarousellite”>

    <ul class=”backgroundimg”>
    <?php wp_get_archives(‘title_li=&type=postbypost&limit’); ?>

    </div>
    </div>
    <div class=”sidebardown”>
    </div><!–sidebardown –>

  • <div class=”sidenavtop”>
    <h2 id=”archivecollapse”> Archive </h2>
    <h4 id=”colapse”> collapse</h4>
    <h4 id=”expand”> expand</h4>
    </div>

    <div class=”sidebarmiddle” id=”collap”>

      <?php wp_get_archives(‘type=monthly’); ?>

    </div>
    <div class=”sidebardown”>
    </div><!–sidebardown –>

  • <!–Resource –>

  • <div class=”sidenavtop” >
    <h2 id=”resourcecollapse”>Resources</h2>
    <h4 id=”colapse1″>collapse</h4>
    <h4 id=”expand1″> expand</h4>
    </div><!–sidenavtop –>

    <div class=”sidebarmiddleresource” id=”collap1″>

      <?php wp_list_bookmarks(‘categorize=&title_li=<h2></h2>’); ?>

    </div>

    <div class=”sidebardown”>
    </div><!–sidebardown –>

  • <?php if ( is_home() || is_page() ) { ?>

  • <h2>Meta</h2>
  • <?php } ?>

    <?php endif; ?>

    </div>
    <div style=”clear: both;”></div>

    function.php
    <?php
    if ( function_exists(‘register_sidebar’) )
    register_sidebar());
    ?>

    help plz
    thank u