deweymoore
Member
Posted 1 year ago #
I installed the podpress plugin and I am using it to successfully upload podcasts. I cannot figure out how to make a button or link on the page so that people can directly subscribe to the podcasts from the sight. I am able to subscribe through the directory in itunes but I want a button on the page preferably. Please help. Thanks.
deweym,
if you are using PodPress you can put this code in your theme's sidebar.php template
<li><?php
if (function_exists('podPress_iTunesLink')) {
podPress_iTunesLink();
}
?></li>
If not using podpress, just put an iTunes graphic on your server, and put the graphic in your sidebar. Make that graphic icon link to
http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=PUT-YOUR-FEED-ID-HERE
deweymoore
Member
Posted 1 year ago #
Thank you for your help. I was able to put a button on the page by going into the "Design" tab and click the "Widgets"
link, near the bottom is a "Feed Buttons" widget. Just click that and click on edit in the resulting box to configure the settings. If your theme is widgets-compatible, the itunes button will show up in your sidebar and allow people to subscribe from your site.