Plugin Author
Veda
(@vedathemes)
Hi there,
What kind of dynamic tags you are trying to use for episode identification. If I understand correctly, you want to create a custom field using ACF or similar plugin and enter certain tag or data to identify which episode is to be displayed.
If that’s the case, what sort of unique identification tags are you planning to use?
Thanks,
Plugin Author
Veda
(@vedathemes)
Hi there,
Is there any update on the above. Can I help you in any way?
Thanks,
I built a post template for podcast episodes. I have a custom field for each post that points to the .mp3 file for single episode.
I want the Single Episode Podcast Player to use that dynamic field to play the unique episode for each post.
Plugin Author
Veda
(@vedathemes)
Hi there,
It should be possible with podcast player pro. Podcast player pro has a feature to display a single podcast player from mp3 url (refer Documentation). You can use podcast player shortcode in your template file.
Although I haven’t tried, but something similar to following code in your single template should work (assuming you custom field name is episodemp3),
global $post;
$my_mp3url = get_post_meta($post->ID, 'episodemp3', true);
if ( $my_mp3url ) :
echo do_shortcode( "[podcastplayer fetch_method='link' mediasrc='$my_mp3url']" );
endif;
Note1: Custom field retrieval function may be different based on what plugin or feature you are using to create a custom field.
Note2: Always backup your site before making PHP changes. It is better to test the code on a test website before putting on a live website.
Please inform if you need more help on this.
Thanks,
Plugin Author
Veda
(@vedathemes)
Hi there,
Is above clarification sufficient to solve your issue. Please inform if you need more help.
Thanks,
Plugin Author
Veda
(@vedathemes)
Hi there,
I hope the above issue has been resolved. Therefore, I am closing this ticket. However, feel free to comment on this ticket OR create a new ticket if you need any help with Podcast Player.
Thanks,