Widgetizing Blue Corner
-
Hey,
I am trying to get the widget api to work on the theme i am using (blue corner) any ideas?
<div class="SRL"> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Left_Sidebar') ) : else : ?> <div class="Categ"> <h3><span>Categories</span></h3> <ul> <?php wp_list_cats(); ?> </ul> </div> <?php endif; ?> </div> <div class="SRR"> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Right_Sidebar') ) : else : ?> <div class="CategR"> <h3><span>Links</span></h3> <ul> <?php get_links('-1', '<li>', '</li>', '', FALSE, 'id', FALSE, FALSE, -1, FALSE); ?> </ul> </div> <div class="CategR"> <h3><span>Archives</span></h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </div> <div class="CategR"> <h3><span>Meta</span></h3> <ul> <?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> <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> <?php wp_meta(); ?> </ul> </div> <?php endif; ?> </div>Is the code???
The topic ‘Widgetizing Blue Corner’ is closed to new replies.