i can access to widgets from wp-admin
but i cant change it i added some widgets but they r not showing up
it is just showing default widgets
ithink there is some thing wrong with sidebar.php or function.php
help
Code:
<?php /** * @package HiBlue_web2morrow_com * @subpackage HiBlue */ ?> <div id="sidebar"> <div class="sb-bg"> <div class="sb-top"> <div class="sb-bot"> <div class="sb-con"> <!-- TABBED MENU --> <div id="container"> <ul class="menu"> <li id="nav_recent" class="nav_recent active"></li> <li id="nav_comments" class="nav_comments"></li> <li id="nav_archives" class="nav_archives"></li> </ul> <span class="clear"></span> <div class="tabbedcontent nav_recent"> <ul><?php wp_get_archives('type=postbypost&limit=5'); ?></ul> </div> <div class="tabbedcontent nav_comments"> <?php //global $wpdb; $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,42) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10"; $comments = $wpdb->get_results($sql); $output = $pre_HTML; $output .= "\n<ul>"; foreach ($comments as $comment) { $output .= "\n<li>" . "<a href=\"" . get_permalink($comment->ID) . "#comment-" . $comment->comment_ID . "\" title=\"on " . $comment->post_title . "\">" . strip_tags($comment->com_excerpt) ."...</a></li>"; } $output .= "\n</ul>"; $output .= $post_HTML; echo $output;?> </div> <div class="tabbedcontent nav_archives"> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </div> </div> <!-- END OF TABBED MENU --> </div> </div> </div> </div> <div class="sb-bg"> <div class="sb-top"> <div class="sb-bot"> <div class="sb-con" style="height: 20px;"> <div style="float: left; padding-left: 10px;"> <a href="<?php bloginfo('comments_rss2_url'); ?>" title="subscribe"><img class="center" border="0" src="<?php bloginfo('template_url'); ?>/images/nav_rss.png" alt="subscribe" /></a> </div> <div style="float: left; padding-left: 15px; padding-top: 1px;"> <!-- AddThis Button BEGIN --> <script type="text/javascript">var addthis_pub="hiblue";</script> <a href="http://www.addthis.com/bookmark.php?v=20" onmouseover="return addthis_open(this, '', '[url]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/sm-bookmark-en.gif" width="83" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/200/addthis_widget.js"></script> <!-- AddThis Button END --> </div> </div> </div> </div> </div> <? include(TEMPLATEPATH.'/ad_blocks.php'); ?> <div class="sb-bg"> <div class="sb-top"> <div class="sb-bot"> <div class="sb-con"> <h3>Pages</h3> <ul> <?php wp_list_pages('title_li=' ); ?> </ul> </div> </div> </div> </div> </div>