When I try to add a widget to the left sidebar all of the original links disappear. Is there any way to keep the original links but add other widgets to the left sidebar?
When I try to add a widget to the left sidebar all of the original links disappear. Is there any way to keep the original links but add other widgets to the left sidebar?
Widgets normally replace everything between
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
down to
<?php endif; ?>
in sidebar.php
If you want to use the standard side bar links and widgets, you'll need to move the
<?php endif; ?>
so that it comes immediately after
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
You must log in to post.