Changeset 6666
- Timestamp:
- 02/17/2018 01:29:57 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/functions.php
r6665 r6666 305 305 306 306 $markers = apply_filters( 'wcc_get_map_markers', $markers ); 307 308 set_transient( $transient_key, $markers, DAY_IN_SECONDS ); 307 $cache_expiration = 'about' === $map_id ? WEEK_IN_SECONDS : DAY_IN_SECONDS; 308 309 set_transient( $transient_key, $markers, $cache_expiration ); 309 310 310 311 return $markers;
Note: See TracChangeset
for help on using the changeset viewer.