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.


Top ↑

Parameters

$stylesheet

(string)Directory name of the theme.

$theme

(WP_Theme)Current WP_Theme object.

$status

(string)Status of the theme.


Top ↑

Source

File: wp-admin/includes/class-wp-ms-themes-list-table.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.