In your WP admin, remove all widgets from the sidebar. Done. Now it will revert to whatever is in the sidebar.php file.
In sidebar.php, you’ll see something like this:
<ul id="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<li id="about">
<h2>About</h2>
<p>This is my blog.</p>
</li>
<li id="links">
<h2>Links</h2>
<ul>
<li><a href="https://example.com">Example</a></li>
</ul>
</li>
<?php endif; ?>
</ul>
Everything between the if
and the endif
is what displays when you remove all widgets (using the admin menu). Put whatever you want between the if and endif and it will display when there aren’t widgets.