after_theme_row_(stylesheet) action-hook . WP 3.5.0
Fires after each specific row in the Multisite themes list table.
The dynamic portion of the hook name, $stylesheet, refers to the directory name of the theme, most often synonymous with the template name of the theme.
Usage
add_action( 'after_theme_row_(stylesheet)', 'action_function_name_9198', 10, 3 ); function action_function_name_9198( $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.5.0 | Introduced. |
Where the hook is called
after_theme_row_(stylesheet)
wp-admin/includes/class-wp-ms-themes-list-table.php 1006
do_action( "after_theme_row_{$stylesheet}", $stylesheet, $theme, $status );
Where in WP core the hook is used WordPress
wp-admin/includes/class-wp-ms-themes-list-table.php 979
remove_action( "after_theme_row_$stylesheet", 'wp_theme_update_row' );
wp-admin/includes/class-wp-ms-themes-list-table.php 613
add_action( "after_theme_row_{$theme}", 'wp_theme_update_row', 10, 2 );