You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Jul 1, 2026
·
8 revisions
Filters the list of dashboard RSS feeds.
Plugins can use this to expose their dashboard RSS widgets.
Auto-generated Example
/** * Filters the list of dashboard RSS feeds. * * Plugins can use this to expose their dashboard RSS widgets. * * @param array $array * @return array The filtered value. */functionmy_microsub_dashboard_feeds_callback( array array ) {
// Your code here.return array;
}
add_filter( 'microsub_dashboard_feeds', 'my_microsub_dashboard_feeds_callback' );
Parameters
arrayarray $feeds Array of feeds, each with 'id', 'name', and 'url' keys. Other variable names: $array