after_theme_row action-hookWP 3.1.0

Fires after each row in the Multisite themes list table.

Usage

add_action( 'after_theme_row', 'wp_kama_after_theme_row_action', 10, 3 );

/**
 * Function for `after_theme_row` action-hook.
 * 
 * @param string   $stylesheet Directory name of the theme.
 * @param WP_Theme $theme      Current WP_Theme object.
 * @param string   $status     Status of the theme.
 *
 * @return void
 */
function wp_kama_after_theme_row_action( $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

WP_MS_Themes_List_Table::single_row()
after_theme_row
wp-admin/includes/class-wp-ms-themes-list-table.php 1021
do_action( 'after_theme_row', $stylesheet, $theme, $status );

Where the hook is used in WordPress

Usage not found.