• If anyone has done this or knows how, I’d like to enable widgets in the sidebar, which is actually in the footer, of the Ambiru 1.0 theme. Any help would be great.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Just create a file named “functions.php”, place it into your theme folder and put the following code into it

    <?php
    if ( function_exists('register_sidebar') )
        register_sidebar();
    ?>

    And this into your sidebar.php. Example:

    <ul id="sidebar">
    	<?php if ( !function_exists('dynamic_sidebar')
            || !dynamic_sidebar() ) : ?>
    
    	<li...
    Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    A link to the theme would be helpful.

    Failing that, the best we can do is point you to here:
    http://automattic.com/code/widgets/themes/

    That has full instructions on how to do it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Help Wigetizing Theme’ is closed to new replies.