Inline documentation for hooks in wp-admin/theme-install.php.
Props leewillis77 and kpdesign for the initial patches. Fixes #25823. Built from https://develop.svn.wordpress.org/trunk@26343 git-svn-id: http://core.svn.wordpress.org/trunk@26244 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e90e224cbd
commit
657824a133
|
@ -34,7 +34,16 @@ wp_enqueue_script( 'theme' );
|
||||||
|
|
||||||
$body_id = $tab;
|
$body_id = $tab;
|
||||||
|
|
||||||
do_action('install_themes_pre_' . $tab); //Used to override the general interface, Eg, install or theme information.
|
/**
|
||||||
|
* Fires before each of the tabs are rendered on the Install Themes page.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, $tab, refers to the current
|
||||||
|
* theme install tab. Possible values are 'dashboard', 'search', 'upload',
|
||||||
|
* 'featured', 'new', or 'updated'.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*/
|
||||||
|
do_action( "install_themes_pre_{$tab}" );
|
||||||
|
|
||||||
$help_overview =
|
$help_overview =
|
||||||
'<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/themes/') . '</p>' .
|
'<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/themes/') . '</p>' .
|
||||||
|
@ -80,7 +89,20 @@ endif;
|
||||||
$wp_list_table->views(); ?>
|
$wp_list_table->views(); ?>
|
||||||
|
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
<?php do_action('install_themes_' . $tab, $paged); ?>
|
<?php
|
||||||
|
/**
|
||||||
|
* Fires at the top of each of the tabs on the Install Themes page.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, $tab, refers to the current
|
||||||
|
* theme install tab. Possible values are 'dashboard', 'search', 'upload',
|
||||||
|
* 'featured', 'new', or 'updated'.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*
|
||||||
|
* @param int $paged Number of the current page of results being viewed.
|
||||||
|
*/
|
||||||
|
do_action( "install_themes_{$tab}", $paged );
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
include(ABSPATH . 'wp-admin/admin-footer.php');
|
include(ABSPATH . 'wp-admin/admin-footer.php');
|
||||||
|
|
Loading…
Reference in New Issue