It depends on which theme you are using, but taken from the Lifestyle theme, it would look like this:
Code:
Code:
<div id="l_sidebar">
<ul id="l_sidebarwidgeted">
<li id="categories">
<h2>Categories</h2>
<ul>
<?php wp_list_categories('orderby=name&title_li=&depth=2'); ?>
[/list]
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Bottom Left') ) : ?>
<li id="archives">
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
[/list]
<li id="links">
<h2>Blogroll</h2>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
[/list]
<li id="meta">
<h2>Admin</h2>
<ul>
<?php wp_register(); ?>
[*]<?php wp_loginout(); ?>
[*]WordPress
<?php wp_meta(); ?>
[*]XHTML
[/list]
<?php endif; ?>
[/list]
</div>