Skip to content

Instantly share code, notes, and snippets.

@clarklab
Created July 5, 2012 22:48
Show Gist options
  • Save clarklab/3056940 to your computer and use it in GitHub Desktop.
Save clarklab/3056940 to your computer and use it in GitHub Desktop.
A simple point system in WordPress. I like this function almost *too much*. Please use it wisely.
<?php
function update_user_points($id, $value){
$points = get_user_meta($id, 'points', true);
$points = $points + $value;
update_user_meta($id, 'points', $points);
return $points;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment