• Resolved danielfrey101

    (@danielfrey101)


    Hey!

    I am using the RSS feed plugin on my website but unfortunately, it is starting from Epesodie 4 and not 1.

    I tried to check of this in settings but I couldn’t find it.

    Would appreciate any help.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    Hey @danielfrey101!

    I think this is expected behavior, first go most recent episodes. This way podcasting platform bot can easily parse it.

    Thread Starter danielfrey101

    (@danielfrey101)

    Hey @zahardoc !

    thanks for the reply. Is it possible to change it somehow in the settings to show all my episodes from number 1?

    I also would like it to show all episodes, if possible.

    Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    @mrosero You can change the number of episodes here –
    Settings -> Reading->Syndication feeds show the most recent.

    @danielfrey101
    I’m not sure it’s a good idea to show episodes from number 1, because, at some point, your recent episodes just won’t be shown in the feed.

    Though, if you are sure of what you do and you do understand why you do it, you can use the ssp_episode_query_args filter, something like this:

    add_filter( 'ssp_episode_query_args', function ( $args ) {
    	$args['order'] = 'ASC';
    
    	return $args;
    } );

    Thanks!

    I’m not using this for a public podcast, I’m using this to listen to a series of audio files as part of language learning by creating a password protected RSS feed only for myself, because the podcast capabilities are better than any other way I’ve found to listen to these things on mobile (I don’t want to add them to a music player): it remembers where I stopped, for instance.

    Anyway, it’s important for me to be able to go back and listening to the beginning of the series.

    Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    @mrosero

    Cool, thanks for sharing. That’s an interesting idea of using our plugin for language learning purposes ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘RSS Feed not showing all episodes’ is closed to new replies.