Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: install_themes_pre_{$tab}

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
30      $submenu_file = 'themes.php';
31
32 wp_enqueue_script( 'theme-install' );
33
34 add_thickbox();
35 wp_enqueue_script( 'theme-preview' );
36
37 $body_id = $tab;
38
39 do_action('install_themes_pre_' . $tab); //Used to override the general interface, Eg, install or theme information.
40
41 $help = '<p>' . sprintf(__('You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the <a href="%s" target="_blank">WordPress.org Theme Directory</a>. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'), 'http://wordpress.org/extend/themes/') . '</p>';
42 $help .= '<p>' . __('You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter. Alternately, you can browse the themes that are Featured, Newest, or Recently Updated. When you find a theme you like, you can preview it or install it.') . '</p>';
43 $help .= '<p>' . __('You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme&#8217;s folder via FTP into your <code>/wp-content/themes</code> directory.') . '</p>';
44
45 get_current_screen()->add_help_tab( array(
46      'id'      => 'overview',
47      'title'   => __('Overview'),
48      'content' => $help