Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

podcast_shortcode

// Add Shortcode
function subscribe_podcast_shortcode() {

	$apple_podcast_url = 'https://apps.apple.com/es/app/apple-podcasts/id525463029';
	$google_podcast_url ='https://podcasts.google.com/about';
	$spotify_url ='https://podcasters.spotify.com/';
	
	echo '<p>';
		echo '<a href="'. $apple_podcast_url. '" target="_blank" title="Apple Podcast" class="podcast-meta-itunes">Apple Podcast</a> | '; 
		echo '<a href="'. $google_podcast_url . '" target="_blank" title="Google Podcast" class="podcast-meta-itunes">Google Podcas</a> |'; 
		echo '<a href=" '. $spotify_url .'" target="_blank" title="Spotify" class="podcast-meta-itunes">Spotifyy</a>'; 
	echo '</p>';

}
add_shortcode( 'podcasts', 'subscribe_podcast_shortcode' );