Code Editing: Template Wordpress BlogMembuat sidebar.php (load => strktur hal. SideBar)

Buat halaman php baru , save ke dalam file sidebar.php.
Struktur Defult script na, bisa di modifikasi sesuai selera makan lu, heheheh...serius amat seeehhh... nyantai broo...!!! kakakakwww.....
<!-- begin left sidebar -->
<div id="sidebar">
<div class="links">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Left Navigation') ) :
else : ?>
<h2>Categories</h2>
<?php wp_list_cats(); ?>
<?php //include (TEMPLATEPATH . '/searchform.php'); ?>
<br />
<br />
<h2><?php _e('Meta'); ?></h2>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></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>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS">Valid CSS</a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress">WordPress</a></li>
<?php wp_meta(); ?>
<?php if (function_exists('wp_theme_switcher')) { ?>
<li><h2><?php _e('Themes'); ?></h2>
<?php wp_theme_switcher(); ?>
</li>
<?php } ?>
<?php endif; ?>
</ul>
</div> <!-- /links -->
<div id="sidebar"> </div>
</div> <!-- /left sidebar -->
<!-- begin right sidebar -->
<div id="sidebar">
<div class="links">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Right Sidebar') ) : else : ?>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
<li><h2><?php _e('Author'); ?></h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li>
-->
<h2><?php _e('Last Entries'); ?></h2>
<ul>
<?php get_archives('postbypost', '10', 'custom', '<li>', '</li>'); ?>
</ul>
<?php
$link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories");
foreach ($link_cats as $link_cat) {
?>
<h2><?php echo $link_cat->cat_name; ?></h2>
<?php wp_get_links($link_cat->cat_id); ?>
<?php } ?>
<h2><?php _e('Archives'); ?></h2>
<?php wp_get_archives('type=monthly'); ?>
<?php endif; ?>
</div> <!-- /links -->
<div id="sidebar">
</div>
<!--
GENERATED CODE UNTUK GOOGLE ADSENSE
TIASA TI PALIH DIEU....
-->
</div> <!-- end left sidebar -->