Hi, I’m trying to have a default sidebar shown on any page and specifically post that doesn’t have one defined using your plugin. The plugin seems to have rendered the default sidebar and widgets defunct! The site is https://www.screensiren.ca and heres my themes current sidebar.php file:
<div class=”sidenav”>
<?php
/* CODE */
if (function_exists(‘sidebar_widgets’)){
sidebar_widgets();
}
?>
<h1><?php sidebar_title(); ?></h1>
<div class=”sidebar_css”>
<?php sidebar_content(); ?>
<?php get_widgets(); ?>
</div>
</div>