Make a wordpress site similar to Hot Or Not – Image rating system [closed]

Perhaps WordPress database schema is not so good for an implementation like this one, there’s a couple of ways of how to do it.

You could set a rating post type that is actually a reference with attachmed images and some information for people to rate. So, every time a is_user_logged_in user rates any post of this post type, you’ll probably want to set the post as rated by this user (so he won’t rate it again) on a reference for him in wp_usermeta, and also increase a rating_count on wp_postmeta.

Well, this is just to start.