Hey everyone,
I have just customized my theme in CSS only now i find out i don't have the option to manage widgets in footer from admin panel.
Is there a way to get the footer bar in my widgets panel? I have tried to get things right in my footer.php but i'm a n00b at PHP so failed horribly.
Here is the footer.php (after decoding):
<div class="footer">
<ul class="sponsors">
<!-- Edit Sponsor Links Below -->
<li class="footerhead">Links</li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
<ul class="links">
<!-- Edit Sponsor Links Below -->
<li class="footerhead">Links</li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
<ul class="meta">
<li class="footerhead">Meta</li>
<li><a href="http://localhost/Wordpress%20final/wp-login.php?action=logout&_wpnonce=d82a18cd06">Log out</a></li>
<li><a href="http://localhost/Wordpress%20final/?feed=rss2">Entries RSS</a></li>
<li><a href="http://www.cmdesignlounge.com">Design by ChiQ</a></li>
</ul>
</div>
Now here is the div in edit-tags.php:
<div class="tagcloud">
<h3><?php _e('Popular Tags'); ?></h3>
<?php
if ( $can_manage )
wp_tag_cloud(array('taxonomy' => $taxonomy, 'link' => 'edit'));
else
wp_tag_cloud(array('taxonomy' => $taxonomy));
?>
</div>
What would be the correct way to either get the cloud in there manually or get the option to put widgets in the footer from admin panel?
Using template: travello-blog-10
Thanks in advance