Changeset 9633 for sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/official-wordpress-events.php
- Timestamp:
- 03/25/2020 06:20:25 PM (5 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
r9632 r9633 16 16 const MEETUP_API_BASE_URL = 'https://api.meetup.com/'; 17 17 const MEETUP_MEMBER_ID = 72560962; 18 const CACHEBUSTER = 2; 18 19 19 20 /* … … 172 173 global $post; 173 174 174 wp_register_style( 'official-wordpress-events', plugins_url( 'official-wordpress-events.css', __FILE__ ), array(), 1 ); 175 wp_register_style( 176 'official-wordpress-events', 177 plugins_url( 'official-wordpress-events.css', __FILE__ ), 178 array(), 179 self::CACHEBUSTER 180 ); 175 181 176 182 if ( is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, 'official_wordpress_events' ) ) { … … 825 831 826 832 require_once( __DIR__ . DIRECTORY_SEPARATOR . 'official-wordpress-event.php' ); 833 require_once( __DIR__ . DIRECTORY_SEPARATOR . 'official-events-online.php' ); 827 834 $GLOBALS['Official_WordPress_Events'] = new Official_WordPress_Events();
Note: See TracChangeset
for help on using the changeset viewer.