@nathmie:
There is of course a way to adjust the limit for the amount of posts in a certain feed. I will add such an option to the settings of podPress Feeds in the next podPress upgrade.
But for now you may use this code snippet:
add_filter( 'post_limits', 'podcast_post_limits' );
function podcast_post_limits( $limit ) {
global $wp_query;
if ( TRUE === $wp_query->is_feed AND 'podcast' === $wp_query->query_vars['feed'] ) {
return 'LIMIT 0, 50';
}
return $limit;
}
(It is based on this example.)
This code influences the WP db request and 'LIMIT 0, 50'
means that the feed will contain max. 50 posts. You may alter this number.
This code is influences only the feed with the slug name podcast
. If your feed has a different slug name then you need to change that in the line
if ( TRUE === $wp_query->is_feed AND 'podcast' === $wp_query->query_vars['feed'] ) {
Put this code snippet into the functions.php of your theme.
@adamc6: The issue with the podcast feed in your blog is very different from the one discussed in this thread. The feed is invalid / not working because it does not contain posts. In such a situation you get a 404 error too. You may look into source code too: https://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fsocialstrategizer.com%2Ffeed%2Fpodcast .
But this particular feed will be valid once you attach a media file with podPress to a post and publish the post. (This feed will contain only posts with podPress attachment by default.) If you have further questions, please open a new thread.
Tim