Skip to content

microsub_dashboard_feeds

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.
 */
function my_microsub_dashboard_feeds_callback( array array ) {
    // Your code here.
    return array;
}
add_filter( 'microsub_dashboard_feeds', 'my_microsub_dashboard_feeds_callback' );

Parameters

  • array array $feeds Array of feeds, each with 'id', 'name', and 'url' keys. Other variable names: $array

Files

\apply_filters( 'microsub_dashboard_feeds', array() )

← All Hooks

Clone this wiki locally