Filters the action links displayed for each site in the Sites list table.
Description
The 'Edit', 'Dashboard', 'Delete Permanently', and 'Visit' links are displayed by default for each site. The site's status determines whether to show the 'Remove Deletion Flag' or 'Flag for Deletion' link, 'Unarchive' or 'Archive' links, and 'Not Spam' or 'Spam' link for each site.
Parameters
$actionsstring[]
An array of action links to be displayed.
$blog_idint
The site ID.
$blognamestring
Site path, formatted depending on whether it is a sub-domain or subdirectory multisite installation.
877*878* @param string[]$actions An array of action links to be displayed.879* @param int$blog_id The site ID.880* @param string$blogname Site path, formatted depending on whether it is a sub-domain881*or subdirectory multisite installation.882*/883$actions=apply_filters('manage_sites_action_links',array_filter($actions),$blog['blog_id'],$blogname);884885return$this->row_actions($actions);886}887}888
History
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.