• Resolved thelanj

    (@thelanj)


    How do i get SSP to add the episode number to my feed? Does it support the episode number in anyway?

    I’ve been using the post attributes ORDER field to number them.

    Thanks

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

    (@zahardoc)

    Hi @thelanj,


    Did you want to add the episode number to the episode title in your feed?

    If so, please try the following snippet ( put it in your functions.php file ):

    add_filter( 'ssp_feed_item_args', function ( $args, $post_id ) {
    	$post = get_post( $post_id );
    	if ( $post->menu_order ) {
    		$args['title'] = '#' . $post->menu_order . ': ' . $args['title'];
    	}
    
    	return $args;
    }, 10, 2 );

    Best regards,
    Sergiy, development team.

Viewing 1 replies (of 1 total)

The topic ‘Episode Number’ is closed to new replies.