Re: Podcasting in word press site
Well, basically you need to upload the audio file on a server and then link the audio file in one of your posts. Link the file in the following way.
<a href="http://example.com/my-podcast.mp3">My podcast</a>
Also, it might be possible that the server where you have uploaded the files is not able to recognize m4a and m4b files as podcasts. Add the following directives to your Apache configuration file or .htaccess file:
AddType audio/x-m4a .m4a
AddType audio/x-m4b .m4b
|