Advanced

Super RSS reader has support for hooks using which you can manipulate the RSS feed display or even insert advanced data present in your feed. You can refer more details on the hook in the documentation page. Hooks are supported in both free and PRO versions.

In this page you can find an example where an audio player is added to a RSS feed display using srr_mod_item_html filter.

Code used in this demo

function srr_add_audio_player($data, $feed_url, $item){

    if( $feed_url != 'http://feeds.feedburner.com/LibrivoxCommunityPodcast' ){
        return $data;
    }

    $media = $item->get_item_tags( 'http://search.yahoo.com/mrss/', 'content' );

    if( empty( $media ) ){
        return $data;
    }

    $audio_url = $media[0]['attribs']['']['url'];
    $audio_type = $media[0]['attribs']['']['type'];
    $audio_html = '<br/><audio controls><source src="' . $audio_url . '" type="' . $audio_type . '"></audio>';

    $data['meta'] .= $audio_html;

    return $data;

}
add_filter( 'srr_mod_item_html', 'srr_add_audio_player', 10, 3 );