dashboard_secondary_feed filter-hookWP 2.3.0

Filters the secondary feed URL for the 'WordPress Events and News' dashboard widget.

Usage

add_filter( 'dashboard_secondary_feed', 'wp_kama_dashboard_secondary_feed_filter' );

/**
 * Function for `dashboard_secondary_feed` filter-hook.
 * 
 * @param string $url The widget's secondary feed URL.
 *
 * @return string
 */
function wp_kama_dashboard_secondary_feed_filter( $url ){

	// filter...
	return $url;
}
$url(string)
The widget's secondary feed URL.

Changelog

Since 2.3.0 Introduced.

Where the hook is called

wp_dashboard_primary()
dashboard_secondary_feed
wp-admin/includes/dashboard.php 1588-1592
'url'          => apply_filters(
	'dashboard_secondary_feed',
	/* translators: Link to the Planet feed of the locale. */
	__( 'https://planet.wordpress.org/feed/' )
),

Where the hook is used in WordPress

Usage not found.