I looked for that in all files of the theme. In the widgets, I only added “Blog Post” and “Text”.
Sidebar (original):
<!– Sidebar –>
<div class=”sidebar”>
<h3>Pages</h3>
<?php wp_list_pages(‘title_li=’); ?>
<h3>Archives</h3>
<?php wp_get_archives(‘type=monthly’); ?>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(1) ) : ?>
<?php endif; ?>
</div>
<!– Sidebar –>
Then I wanted to remove something from the left sidebar (pages, archives) and looked at the sidebar.php and remove the code of that. Now, what I’m using looks like this:
<!– Sidebar –>
<div class=”sidebar”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(1) ) : ?>
<?php endif; ?>
</div>
<!– Sidebar –>
But now, how can I edit/remove the right sidebar?