Changeset 25272 for trunk/src/wp-includes/theme.php
- Timestamp:
- 09/06/2013 01:32:09 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/theme.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r25235 r25272 111 111 * 112 112 * @since 3.5.0 113 */ 114 function wp_clean_themes_cache() { 115 delete_site_transient('update_themes'); 113 * @param bool $clear_update_cache Whether to clear the Theme updates cache 114 */ 115 function wp_clean_themes_cache( $clear_update_cache = true ) { 116 if ( $clear_update_cache ) 117 delete_site_transient( 'update_themes' ); 116 118 search_theme_directories( true ); 117 119 foreach ( wp_get_themes( array( 'errors' => null ) ) as $theme )
Note: See TracChangeset
for help on using the changeset viewer.