Last modified 6 years ago
WP-Polls Installation Instructions
Open wp-content/plugins folder
Put:
- Folder: polls
Open root Wordpress folder
Put:
- wp-polls.php
Activate WP-Polls plugin
Open wp-content/themes/<YOUR THEME NAME>/sidebar.php
Add Anywhere:
<?php if (function_exists('vote_poll')): ?>
<li>
<h2>Polls</h2>
<ul>
<?php get_poll();?>
<li><a href="<?php echo get_settings('home'); ?>/wp-content/plugins/polls/wp-polls.php">Polls Archive</a></li>
</ul>
</li>
<?php endif; ?>
Note:
- To show specific poll, use <?php get_poll(<ID>);?> where <ID> is your poll id.
- To embed a specific poll in your post, use [poll=<ID>] where <ID> is your poll id.
