Skip to content

Instantly share code, notes, and snippets.

@itsjusteileen
Forked from hlashbrooke/functions.php
Created August 3, 2019 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsjusteileen/2bf449bac74356419a8bef6a7623ea20 to your computer and use it in GitHub Desktop.
Save itsjusteileen/2bf449bac74356419a8bef6a7623ea20 to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Remove 'Download file' link from episode meta data
add_filter( 'ssp_episode_meta_details', 'ssp_remove_download_link', 10, 3 );
function ssp_remove_download_link ( $meta, $episode_id, $context ) {
unset( $meta['link'] );
return $meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment