Created
June 9, 2014 17:49
-
-
Save sidharrell/e717c2efb5fa271fa1cb to your computer and use it in GitHub Desktop.
function to return prices for event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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