Changeset 4781
- Timestamp:
- 01/25/2017 01:28:50 PM (9 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/themes
- Files:
-
- 3 edited
-
wordcamp-base-v2/lib/structure/class-wcb-structure.php (modified) (2 diffs)
-
wordcamp-base/lib/structure/class-wcb-structure.php (modified) (2 diffs)
-
wordcamp-central-2012/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-structure.php
r4590 r4781 1 1 <?php 2 3 use WordCamp\RemoteCSS;4 2 5 3 class WCB_Structure extends WCB_Loader { … … 44 42 45 43 // Don't output CSS if Jetpack Custom CSS/RemoteCSS is set to 'replace' mode 46 if ( 'replace' === RemoteCSS\get_output_mode() ) { 44 require_once( JETPACK__PLUGIN_DIR . '/modules/custom-css/custom-css-4.7.php' ); 45 if ( Jetpack_Custom_CSS_Enhancements::skip_stylesheet() ) { 47 46 return; 48 47 } 49 48 49 // todo - this filter is not used anywhere and can be removed. Custom CSS and Remote CSS have options for this instead. 50 50 $start_fresh = apply_filters( 'wcb_start_fresh', false ); 51 51 $child_recs = array(); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-structure.php
r4590 r4781 1 1 <?php 2 3 use WordCamp\RemoteCSS;4 2 5 3 class WCB_Structure extends WCB_Loader { … … 44 42 45 43 // Don't output CSS if Jetpack Custom CSS/RemoteCSS is set to 'replace' mode 46 if ( 'replace' === RemoteCSS\get_output_mode() ) { 44 require_once( JETPACK__PLUGIN_DIR . '/modules/custom-css/custom-css-4.7.php' ); 45 if ( Jetpack_Custom_CSS_Enhancements::skip_stylesheet() ) { 47 46 return; 48 47 } 49 48 49 // todo - this filter is not used anywhere and can be removed. Custom CSS and Remote CSS have options for this instead. 50 50 $start_fresh = apply_filters( 'wcb_start_fresh', false ); 51 51 $child_recs = array(); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/functions.php
r4624 r4781 826 826 827 827 // Count the number of cities 828 // @todo use _venue_city field since it'll be more accurate, but need to populate older camps first 828 829 foreach ( $wordcamps->posts as $wordcamp ) { 829 830 $url = get_post_meta( $wordcamp->ID, 'URL', true );
Note: See TracChangeset
for help on using the changeset viewer.