Voting System, database connections?

What you want are post meta/custom fields, using these functions: get_post_meta add_post_meta update_post_meta Adding a new column to the posts table will only cause further issues down the line e.g.: database schema changes in WP Core destroying your extra column having to write your own custom SQL for everything related to post votes No help … Read more

Comment rating plugin for wordpress. [closed]

it seems like a custom or a modified plugin at the very most its named smash-commentratings on the site you mentioned and the closest plugin to that one is this one named comment rating but if you want to use a rating plugin i will advice gd star ratting which offers not only the comment … Read more

Is there a way to rate users instead of posts?

I would create a custom table that stored a) the user doing the rating b) the user being rated c) the rating d) the time of the rating. Between these 4, you should be able to store, aggregate, and effectively query your data with very little overhead or PHP processing. update note: this is pseudocode … Read more