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 |
---|---|
208 | $tags = $themes[$theme_name]['Tags']; |
209 | $thickbox_class = 'thickbox thickbox-preview'; |
210 | $activate_link = wp_nonce_url("themes.php?action=activate&template=".urlencode($template)."&stylesheet=".urlencode($stylesheet), 'switch-theme_' . $template); |
211 | $activate_text = esc_attr( sprintf( __('Activate “%s”'), $title ) ); |
212 | $actions = array(); |
213 | $actions[] = '<a href="' . $activate_link . '" class="activatelink" title="' . $activate_text . '">' . __('Activate') . '</a>'; |
214 | $actions[] = '<a href="' . $preview_link . '" class="thickbox thickbox-preview" title="' . esc_attr(sprintf(__('Preview “%s”'), $theme_name)) . '">' . __('Preview') . '</a>'; |
215 | if ( current_user_can('update_themes') ) |
216 | $actions[] = '<a class="submitdelete deletion" href="' . wp_nonce_url("themes.php?action=delete&template=$stylesheet", 'delete-theme_' . $stylesheet) . '" onclick="' . "if ( confirm('" . esc_js(sprintf( __("You are about to delete this theme '%s'\n 'Cancel' to stop, 'OK' to delete."), $theme_name )) . "') ) {return true;}return false;" . '">' . __('Delete') . '</a>'; |
217 | $actions = apply_filters('theme_action_links', $actions, $themes[$theme_name]); |
218 |
|
219 | $actions = implode ( ' | ', $actions ); |
220 | ?> |
221 | <a href="<?php echo $preview_link; ?>" class="<?php echo $thickbox_class; ?> screenshot"> |
222 | <?php if ( $screenshot ) : ?> |
223 | <img src="<?php echo content_url($stylesheet_dir . '/' . $screenshot); ?>" alt="" /> |
224 | <?php endif; ?> |
225 | </a> |
226 | <h3><?php |