CoHost Features

Blogs

In-depth insights, advice, and trends in podcasting.

Sign up for The Branded Podcaster.

Blogs

Podcast insights, news, and tips.

Just one click away from your inbox.

Submitted!
Thanks for signing up for the CoHost Newsletter,
head over to our resource center to learn how you can level up your podcast!
Resource center
Oops! Something went wrong while submitting the form.
/* UTM tracking code * Takes any query parameters that have affiliate tracking * and adds them to any links to our app. * Note: app links need to have “app-link” css class */ var urlParams = new URLSearchParams(window.location.search); var query = urlParams.toString(); if (query.length > 0) { var queryParams = ‘?’ + query var appLinks = document.getElementsByClassName(‘app-link’); for (i = 0; i < appLinks.length; i++) { appLinks[i].href += queryParams; } }