Rating system for users

From what you’ve mentioned, this could be done by adding a new field to the user_meta on the back end. Then, you could use an approach similar to what’s documented here for front end editing by users: How to edit a user profile on the front end?

Where are comment ratings stored?

As stated in the comments below the question, Comments don’t have ratings in WordPress I went on and inspected the HTML source for one of my posts and figured out which plugin generated the rating based on the CSS class name. I should have known better. The plugin is Tasty Recipes by WP Tasty. I … Read more

WordPress Post Voting – Vote once per IP on entire site

The only difference you need is the place where the IP address will be stored. Instead of a post meta use an option. So, where the script says … $voter_ips = get_post_meta($postid, “voter_ips”, true); … use … $voter_ips = get_option( “wpse_59080_voter_ips”, true ); … and where it updates a post meta you should update the … Read more

wp_star_rating() – Adding a 5 star rating system to theme

Instead of redefining wp_star_rating() for the front end, you should be able to just use the built-in function. From the Codex page for wp_star_rating(): In order to use this function on the front end, your template must include the wp-admin/includes/template.php file and enqueue the appropriate dashicons CSS font information. (emphasis mine) A code sample is … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)