[help] wordpress plugins

hi guys i am new in wordpress. can anybody help me.

just want to know how the owner of this site add in the sidebar the about,weather, calendar, and the other navigation menu.

if it is a plugin, can you post the link.

thanks a lot. just starting to build a site. look here

#341148

First off all, you must have a sidebar.php file. After, you can modify this file. Template hierarchy like this;

1. header.php

2. index.php

3. sidebar.php

4. footer.php

Search the google "two column layout" for help.

For example;

index.php

		<?php get_header(); ?>


<div class="conttitle"><?php if ( is_home() ) { ?> SON EKLENEN MAKALELER <?php } ?></div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

<div id="article-container"> <!-- Article Container Start -->
<div id="post-container"> <!-- Post-Container Start -->

<div class="articlestripe">
<div id="post-category"><?php the_category(' | '); ?></p></div> <!-- Post Category -->
<div id="comment-count"><img src="../../unavailable.html" border="0" align="absmiddle"><?php comments_number('', ' 1', ' %'); ?> 999</div> <!-- Comment Count -->
</div>

<div class="articlenav"><?php link_pages('<p>SAYFA :', '</p>'); ?></div>
<div class="ifrtitle" id="article-title"><h2><a href="../../unavailable.html" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2></div>
<div class="postauthor"><?php the_author() ?> <?php the_time(' / j F Y G:i') ?></div>
<div id="post-content">
<div class="post" id="post-<?php the_ID(); ?>">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>

<div id="post-tag">Post TAG</div>
<div class="postdivider"></div>

</div> <!-- Post-Container End -->


<?php endwhile; ?>

<table class="navpage" align="center">
<tr>
<td class="pagetop" align="center"><a href="#" title="Sayfa başı..."></a></td>
</tr>
</table>
</div> <!-- Article Container End -->
<?php else : ?>

<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>

<?php endif; ?>


</div> <!-- Whole-Container End -->

[COLOR=Blue]<?php get_sidebar(); ?>[/COLOR]
<?php get_footer(); ?>

sidebar.php

<td valign="top" width="220" align="left">
<div id="sidebar">

<?php if (is_home()) { ?>

<h6><em>Categories</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>
<ul class="categories">
<?php wp_list_cats('sort_column=name&hide_empty=0'); ?>
</ul>

<h6><em>Links</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>
<ul class="links">
<?php get_links('-1', '<li>', '</li>', '', 0, 'name', 0, 0, -1, 0); ?>
</ul>

<h6><em>Feeds</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>
<ul class="feeds">
<li><a href="../../unavailable.html">Entries (RSS)</a></li>
<li><a href="../../unavailable.html">Comments (RSS)</a></li>
</ul>

<?php } ?>

<?php if (is_single()) { ?>

<h6><em>Calendar</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>

<?php get_calendar() ?>

<h6><em>Most Recent Posts</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>

<ul class="posts">
<?php BX_get_recent_posts($p,10); ?>
</ul>

<?php } ?>

<?php if (is_page("archives") || is_archive() || is_search()) { ?>

<h6><em>Calendar</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>

<?php get_calendar() ?>

<?php if (!is_page("archives")) { ?>

<h6><em>Posts by Month</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>

<ul class="months">
<?php get_archives('monthly','','','<li>','</li>',''); ?>
</ul>

<?php } ?>

<h6><em>Posts by Category</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>

<ul class="categories">
<?php wp_list_cats('sort_column=name&hide_empty=0'); ?>
</ul>

<?php } ?>

<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>

<h6><em>Meta</em></h6>
<div class="rightsep"><img src="../../unavailable.html" border="0" width="200" height="2"></div>
<ul class="links">
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<?php wp_meta(); ?>
</ul>

<?php } ?>

</div>
</td>
<td width="20"> </td>
</tr>
</table>

#341658

thanks a lot bro,

#341862