Hi,
I have created a shortcode which you can use to display the list of feed sources on any page as per the example link you have mentioned. Please add the below code in your theme`s functions.php file
add_shortcode('wprss_custom_feed_listing','wprss_feed_source_listing');
function wprss_feed_source_listing(){
$query_args = Array(
'post_type' => 'wprss_feed',
'posts_per_page' => -1
);
$query = new WP_Query($query_args);
if( $query->have_posts() ){
echo '<ul>';
while($query->have_posts()){
$query->the_post();
$feed_url = get_post_meta( get_the_ID(), 'wprss_url', true );
echo '<li>'.get_the_title().' - <a href="'.$feed_url.'">'.$feed_url.'</a>';
}
echo '</ul>';
}
wp_reset_query();
wp_reset_postdata();
}
Once you have added the code, insert this shortcode [wprss_custom_feed_listing]
on any page to show a list of feed sources with their respective links.
Thanks