manage_sites_action_links filter-hook . WP 3.1.0
Filters the action links displayed for each site in the Sites list table.
The 'Edit', 'Dashboard', 'Delete', and 'Visit' links are displayed by default for each site. The site's status determines whether to show the 'Activate' or 'Deactivate' link, 'Unarchive' or 'Archive' links, and 'Not Spam' or 'Spam' link for each site.
Usage
add_filter( 'manage_sites_action_links', 'filter_function_name_1124', 10, 3 ); function filter_function_name_1124( $actions, $blog_id, $blogname ){ // filter... return $actions; }
- $actions(string[])
- An array of action links to be displayed.
- $blog_id(int)
- The site ID.
- $blogname(string)
- Site path, formatted depending on whether it is a sub-domain or subdirectory multisite installation.
Changelog
Since 3.1.0 | Introduced. |
Where the hook is called
manage_sites_action_links
wp-admin/includes/class-wp-ms-sites-list-table.php 737
$actions = apply_filters( 'manage_sites_action_links', array_filter( $actions ), $blog['blog_id'], $blogname );