Skip to content

Instantly share code, notes, and snippets.

@bahiirwa
Last active August 25, 2017 02:00
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 bahiirwa/f200c178852c045d2714 to your computer and use it in GitHub Desktop.
Save bahiirwa/f200c178852c045d2714 to your computer and use it in GitHub Desktop.
ADDING AUDIO PLAYER TO HEAVEN’S CORNER PREMIUM TEMPLATE
<div class="post-desc">
<!--Edit Short CODE for the player-->
<?php if($post->post_type == 'sermons') {
$custom_fields = get_post_custom(get_the_ID());
$my_custom_field = $custom_fields['sermon_download'];
foreach ( $my_custom_field as $key => $cck_sermon_link ) {
}?>
<?php if (!empty($cck_sermon_link)) {
$var = apply_filters('the_content', "[embed]" . $cck_sermon_link . "[/embed]");
echo $var;}
}?>
<!--END Short CODE for the player-->
@bahiirwa
Copy link
Author

After much deliberation and anticipation to get help from a premium theme developer to send me a response to my query, I got frustrated like most of us would be. One starts to think of adding to the product that is not there own baby and also increase on the web developing community. I have to give credit where it is due as the heaven’s corner theme is well build with custom post types especially for the events and sermon posts. The key issue hear for the extra customization I wanted was to add an audio player that would cut across all platforms of web browsers without using

Shortcodes
Increasing the WordPress queries
Making the website owner have more work
Add another custom field and code for the website.

Just Add this in the single.php page template to achieve the effect of a dynamically generated audio player. You can find more details on http://mediauganda.com/adding-audio-player-to-heavens-corner-premium-template/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment