dashboard_secondary_feed filter-hook . WP 2.3.0
Filters the secondary feed URL for the 'WordPress Events and News' dashboard widget.
Usage
add_filter( 'dashboard_secondary_feed', 'filter_function_name_4045' ); function filter_function_name_4045( $url ){ // filter... return $url; }
- $url(string)
- The widget's secondary feed URL.
Where the hook is called
dashboard_secondary_feed
wp-admin/includes/dashboard.php 1375
'url' => apply_filters( 'dashboard_secondary_feed', __( 'https://planet.wordpress.org/feed/' ) ),