Title: after_theme_row_{$stylesheet}
Published: April 25, 2014
Last modified: May 20, 2026

---

# do_action( “after_theme_row_{$stylesheet}”, string $stylesheet, WP_Theme $theme, string $status )

## In this article

 * [Description](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#description)
 * [Parameters](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#wp--skip-link--target)

Fires after each specific row in the Multisite themes list table.

## 󠀁[Description](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#description)󠁿

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.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#parameters)󠁿

 `$stylesheet`string

Directory name of the theme.

`$theme`[WP_Theme](https://developer.wordpress.org/reference/classes/wp_theme/)

Current [WP_Theme](https://developer.wordpress.org/reference/classes/wp_theme/) 
object.

`$status`string

Status of the theme.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#source)󠁿

    ```php
    do_action( "after_theme_row_{$stylesheet}", $stylesheet, $theme, $status );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-ms-themes-list-table.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-wp-ms-themes-list-table.php#L1064)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-ms-themes-list-table.php#L1064-L1064)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#related)󠁿

| Used by | Description | 
| [WP_MS_Themes_List_Table::single_row()](https://developer.wordpress.org/reference/classes/wp_ms_themes_list_table/single_row/)`wp-admin/includes/class-wp-ms-themes-list-table.php` |

Handles the output for a single table row.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/after_theme_row_stylesheet/?output_format=md#changelog)󠁿

| Version | Description | 
| [3.5.0](https://developer.wordpress.org/reference/since/3.5.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fafter_theme_row_stylesheet%2F)
before being able to contribute a note or feedback.