How do I widgetize the footer for the cleancut theme? I don't have an option in my Widgets Appearance to add any widget to the footer. Do I have to add something to the footer.php to enable this feature. Below is a paste of my footer.php.
<?php global $k_option; ?>
<div id="footer_inside">
<!--end footer_inside-->
</div>
<!-- end center-->
</div>
<!--end wrapper-->
</div>
<div class="wrapper" id='wrapper_footer'>
<div id="footer_outside">
<span class="copyright">
© Copyright '><?php bloginfo('name'); ?> -
Model Jesus by Intentionally Engaging in Connecting, Community, Caring
</span>
<ul class="social_bookmarks">
<li class='rss'>">RSS
<?php
if($k_option['includes']['acc_fb'] != '')
echo "<li class='facebook'>Facebook";
if($k_option['includes']['acc_tw'] != '')
echo "<li class='twitter'>Twitter";
if($k_option['includes']['acc_fl'] != '')
echo "<li class='flickr'>flickr";
?>
top
<!--end footer_outside-->
</div>
<!--end wrapper -->
</div>
<?php wp_footer();
if($k_option['general']['analytics'])
echo $k_option['general']['analytics'];
?>
</body>
</html>














