• Resolved insideril

    (@insideril)


    Hi, I want to know how can I show all episodes of every podcast?

    I never used the “number” attribute on the shortcode

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Veda

    (@vedathemes)

    Hi there,

    Try following code at the end of your child theme’s functions.php file (OR in code snippets plugin),

    add_filter( 'podcast_player_shcode_display', function( $args ) {
    	$args['number'] = 1000; // Add a high number to cover all episodes.
    	return $args;
    }, 12 );

    Note: Please backup before making PHP changes.

    Thanks,

    Thread Starter insideril

    (@insideril)

    Thank you ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show all episodes’ is closed to new replies.