after_theme_row action-hook . WP 3.1.0
Fires after each row in the Multisite themes list table.
Usage
add_action( 'after_theme_row', 'action_function_name_8133', 10, 3 ); function action_function_name_8133( $stylesheet, $theme, $status ){ // action... }
- $stylesheet(string)
- Directory name of the theme.
- $theme(WP_Theme)
- Current WP_Theme object.
- $status(string)
- Status of the theme.
Changelog
Since 3.1.0 | Introduced. |
Where the hook is called
after_theme_row
wp-admin/includes/class-wp-ms-themes-list-table.php 991
do_action( 'after_theme_row', $stylesheet, $theme, $status );