This will involve two file changes.
/wp-content/themes/mytheme/functions.php
/wp-content/themes/mytheme/sidebar.php
Add this to functions.php at the bottom
1 2 3 4 |
if (function_exists('register_sidebar')) register_sidebar(); |
and then add this to sidebar.php
1 2 3 4 5 6 |
<?php if(function_exists(‘dynamic_sidebar’)) dynamic_sidebar(); ?> |