An open API service indexing awesome lists of open source software.

https://github.com/matthewcallis/bvote

Simplest WordPress Digg-esque voting plugin.
https://github.com/matthewcallis/bvote

php vote wordpress wordpress-plugin

Last synced: 2 months ago
JSON representation

Simplest WordPress Digg-esque voting plugin.

Awesome Lists containing this project

README

        

# bvote

Simple Digg style WordPress voting plugin. Easy to use, easy to hack, easy to custimize.

## Useage

### Simple Usage
In a single post, in a loop on the homepage, etc.

```php

```

### Top 5 List
```php


    get_results("SELECT id, post_title FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = 'bvote_score' AND id = post_id AND post_status = 'publish' ORDER BY meta_value DESC LIMIT 0,5");
    foreach($popular_posts as $post) {
    echo "
  1. ".$post->post_title."
  2. \n";
    }
    ?>

```