Viewing 1 replies (of 1 total)
  • Hi!

    here is the solution I’ve got:

    <?php
    global $wpdb;
    $rez = $wpdb->get_results("SELECT pollq_id FROM $wpdb->pollsq ORDER BY pollq_id DESC");
    foreach($rez as $poll) {
            get_poll($poll->pollq_id);
            echo "<br /><br /><hr />";
    }
    ?>

    cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP-Polls] show all poll questions in single page with paging’ is closed to new replies.