I want to add a poll to the right sidebar.
The instructions say to add the below code to wp-content/themes/<YOUR THEME NAME>/sidebar.php
There is no sidebar.php, where do I put it?
Thanks for your time!

Code:
<?php if (function_exists('vote_poll') && !in_pollarchive()): ?>
<li>
<h2>Polls</h2>
<ul>
<li><?php get_poll();?></li>
</ul>
<?php display_polls_archive_link(); ?>
</li>
<?php endif; ?>










Threaded Mode