Skip to content

Instantly share code, notes, and snippets.

@sidharrell
Created June 9, 2014 17:49
Show Gist options
  • Select an option

  • Save sidharrell/e717c2efb5fa271fa1cb to your computer and use it in GitHub Desktop.

Select an option

Save sidharrell/e717c2efb5fa271fa1cb to your computer and use it in GitHub Desktop.
function to return prices for event
function espresso_return_prices_for_event ( $event_id ) {
global $wpdb;
return $wpdb->get_results($wpdb->prepare( "SELECT * FROM " . EVENTS_PRICES_TABLE . " WHERE event_id = %d" , $event_id ));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment