Display the player only

Hello. Is there a shortcode or a php code to just echo the Podlove player in an overview page? I have this webpage and it displays the whole content of the page so if I add a text/description etc. that would be underneath the player. But I only want to display the player and have all other info through a “Read more…”-link.

https://remix.medialepfade.org/eine-lernende-organisation/chorleben/

Okay, I have just found a solution: I echo the shortcode via PHP in my WordPress-template:

<?php if ( get_post_type() == 'podcast' ):
	echo do_shortcode('[podlove-web-player]');
    endif;
?>

Thanks anyway! :grinning:

2 Likes