after_theme_row_{$stylesheet} WordPress Action Hook
The after_theme_row_{$stylesheet} hook is used to make changes to a theme after the theme row has been displayed. This hook is useful for making changes to a theme that are specific to the current user or site.
do_action( "after_theme_row_{$stylesheet}", string $stylesheet , WP_Theme $theme , string $status ) #
Fires after each specific row in the Multisite themes list table.
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
Source
Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |