WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code | 
|---|---|
| 3056 |           'AuthorURI' => $theme->display('AuthorURI', true, false), | 
| 3057 |           'Version' => $theme->get('Version'), | 
| 3058 |           'Template' => $theme->get('Template'), | 
| 3059 |           'Status' => $theme->get('Status'), | 
| 3060 |           'Tags' => $theme->get('Tags'), | 
| 3061 |           'Title' => $theme->get('Name'), | 
| 3062 |           'AuthorName' => $theme->get('Author'), | 
| 3063 |      ); | 
| 3064 |  | 
| 3065 |      foreach ( apply_filters( 'extra_theme_headers', array() ) as $extra_header ) { | 
| 3066 |           if ( ! isset( $theme_data[ $extra_header ] ) ) | 
| 3067 |                $theme_data[ $extra_header ] = $theme->get( $extra_header ); | 
| 3068 |      } | 
| 3069 |  | 
| 3070 |      return $theme_data; | 
| 3071 | } | 
| 3072 |  | 
| 3073 | /** | 
| 3074 |  * Alias of update_post_cache(). |