myblogs_blog_actions filter-hook . WP 3.0.0
Filters the row links displayed for each site on the My Sites screen.
Usage
add_filter( 'myblogs_blog_actions', 'filter_function_name_8839', 10, 2 ); function filter_function_name_8839( $actions, $user_blog ){ // filter... return $actions; }
- $actions(string)
- The HTML site link markup.
- $user_blog(object)
- An object containing the site data.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
In file: /wp-admin/my-sites.php
wp-admin/my-sites.php 138
$actions = apply_filters( 'myblogs_blog_actions', $actions, $user_blog );