Advertisement
chrishajer

Create post and capture GD Star Rating

Aug 7th, 2012
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. // http://www.gravityhelp.com/forums/topic/gd-star-rating-vote-field
  3. // run the code after the form is submitted, for form 1 only
  4. add_action('gform_after_submission_1', 'record_gdsr_vote', 10, 2);
  5. function record_gdsr_vote($entry, $form) {
  6.     // field #3 is the vote field - change it if your vote is recorded in a different field
  7.     gdsrBlgDB::save_vote($entry['post_id'], $entry['created_by'], $entry['ip'], $entry['user_agent'], (int)$entry['3'], 0);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement