Changeset 495
- Timestamp:
- 04/02/2014 07:11:24 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/official-wordpress-events.php
r492 r495 8 8 9 9 class Official_WordPress_Events { 10 const WORDCAMP_API_BASE_URL = 'http s://central.wordcamp.org/wp-json.php';10 const WORDCAMP_API_BASE_URL = 'http://central.wordcamp.org/wp-json.php'; 11 11 const MEETUP_API_BASE_URL = 'https://api.meetup.com/'; 12 12 const MEETUP_MEMBER_ID = 72560962; … … 17 17 * @todo 18 18 * 19 * Setup `owe_error_email_addresses` callback and MEETUP_API_KEY, etc when deploy to production20 19 * Ability to feature a camp in a hero area 21 20 * Add a "load more" button that retrieves more events via AJAX and updates the DOM. Have each click load the next month of events? 21 * Update WORDCAMP_API_BASE_URL to use HTTPS when central.wordcamp.org supports it 22 22 */ 23 23 … … 95 95 'start_timestamp' => $wordcamp->post_meta->{'Start Date (YYYY-mm-dd)'}[0], 96 96 'end_timestamp' => $wordcamp->post_meta->{'End Date (YYYY-mm-dd)'}[0], 97 'loca ltion' => $wordcamp->post_meta->Location[0]97 'location' => $wordcamp->post_meta->Location[0], 98 98 ) ); 99 99 }
Note: See TracChangeset
for help on using the changeset viewer.