Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_cache_themes_persistently

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
344      // We always want to return absolute, but we need to cache relative
345      // to use in get_theme_root().
346      foreach ( $wp_theme_directories as $theme_root ) {
347           if ( 0 === strpos( $theme_root, WP_CONTENT_DIR ) )
348                $relative_theme_roots[ str_replace( WP_CONTENT_DIR, '', $theme_root ) ] = $theme_root;
349           else
350                $relative_theme_roots[ $theme_root ] = $theme_root;
351      }
352
353      if ( $cache_expiration = apply_filters( 'wp_cache_themes_persistently', false, 'search_theme_directories' ) ) {
354           $cached_roots = get_site_transient( 'theme_roots' );
355           if ( is_array( $cached_roots ) ) {
356                foreach ( $cached_roots as $theme_dir => $theme_root ) {
357                     // A cached theme root is no longer around, so skip it.
358                     if ( ! isset( $relative_theme_roots[ $theme_root ] ) )
359                          continue;
360                     $found_themes[ $theme_dir ] = array(
361                          'theme_file' => $theme_dir . '/style.css',
362                          'theme_root' => $relative_theme_roots[ $theme_root ], // Convert relative to absolute.