Skip to content

Instantly share code, notes, and snippets.

@robertdevore
Last active March 1, 2019 19:58
Show Gist options
  • Save robertdevore/96b81d4c687136b8375f12b4e5d5bc3f to your computer and use it in GitHub Desktop.
Save robertdevore/96b81d4c687136b8375f12b4e5d5bc3f to your computer and use it in GitHub Desktop.
The PHP file that's called as $ajax_url in the star-rating.js file
<?php
$postid = $_POST['postid'];
$rating = $_POST['rating'];
update_post_meta( $postid, 'delivery_rating', $rating );
return "success";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment