Changeset 2185
- Timestamp:
- 12/11/2015 03:04:08 PM (7 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/jetpack-tweaks.php
r2085 r2185 191 191 return "url('" . str_replace( "'", "\\'", $url ) . "')"; 192 192 } 193 194 /** 195 * Disable Jetpack's Holiday Snow on all WordCamp sites 196 * 197 * That option appears in Settings > General between December 1st and January 4th. 198 * It is off by default. 199 * This filter removes it completely. 200 */ 201 add_filter( 'jetpack_is_holiday_snow_season', '__return_false' ); -
sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/wcorg-misc.php
r2184 r2185 193 193 add_action( 'wp_ajax_wcorg_flush_rewrite_rules_everywhere', 'wcorg_flush_rewrite_rules' ); // This isn't used by the wp-cli command, but is useful for manual testing 194 194 add_action( 'wp_ajax_nopriv_wcorg_flush_rewrite_rules_everywhere', 'wcorg_flush_rewrite_rules' ); 195 196 // No Jetpack snow.197 add_filter( 'jetpack_is_holiday_snow_season', '__return_false' );
Note: See TracChangeset
for help on using the changeset viewer.