Created
November 7, 2015 11:50
-
-
Save hlashbrooke/3cce0aef4114127b0d41 to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Hide the episode audio player
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'ssp_show_audio_player', '__return_false' ); |
Thanks for this, I did find the option in settings for hiding all meta.
Turn this on to enable player meta data underneath the player. (download link, episode duration and date recorded).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should actually be
add_filter( 'ssp_show_media_player', '__return_false' );
now.