dashboard_secondary_link filter-hook . WP 2.3.0
Filters the secondary link URL for the 'WordPress Events and News' dashboard widget.
Usage
add_filter( 'dashboard_secondary_link', 'filter_function_name_168' ); function filter_function_name_168( $link ){ // filter... return $link; }
- $link(string)
- The widget's secondary link URL.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
dashboard_secondary_link
wp-admin/includes/dashboard.php 1479
'link' => apply_filters( 'dashboard_secondary_link', __( 'https://planet.wordpress.org/' ) ),