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 |
---|---|
189 | $tags = $themes[$theme_name]['Tags']; |
190 | $thickbox_class = 'thickbox thickbox-preview'; |
191 | $activate_link = wp_nonce_url("themes.php?action=activate&template=".urlencode($template)."&stylesheet=".urlencode($stylesheet), 'switch-theme_' . $template); |
192 | $activate_text = esc_attr( sprintf( __('Activate “%s”'), $title ) ); |
193 | $actions = array(); |
194 | $actions[] = '<a href="' . $activate_link . '" class="activatelink" title="' . $activate_text . '">' . __('Activate') . '</a>'; |
195 | $actions[] = '<a href="' . $preview_link . '" class="thickbox thickbox-preview" title="' . esc_attr(sprintf(__('Preview “%s”'), $theme_name)) . '">' . __('Preview') . '</a>'; |
196 | if ( current_user_can('delete_themes') ) |
197 | $actions[] = '<a class="submitdelete deletion" href="' . wp_nonce_url("themes.php?action=delete&template=$stylesheet", 'delete-theme_' . $stylesheet) . '" onclick="' . "return confirm('" . esc_js(sprintf( __("You are about to delete this theme '%s'\n 'Cancel' to stop, 'OK' to delete."), $theme_name )) . "');" . '">' . __('Delete') . '</a>'; |
198 | $actions = apply_filters('theme_action_links', $actions, $themes[$theme_name]); |
199 |
|
200 | $actions = implode ( ' | ', $actions ); |
201 | ?> |
202 | <a href="<?php echo $preview_link; ?>" class="<?php echo $thickbox_class; ?> screenshot"> |
203 | <?php if ( $screenshot ) : ?> |
204 | <img src="<?php echo $theme_root_uri . '/' . $stylesheet . '/' . $screenshot; ?>" alt="" /> |
205 | <?php endif; ?> |
206 | </a> |
207 | <h3><?php |