Easily set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block and podcast transcript block for the WordPress block edi …
Easily set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block and podcast transcript block for the WordPress block editor (aka Gutenberg).
Podcasting is a method to distribute audio and video episodes through a feed to which listeners can subscribe. You can publish podcasts on your WordPress site and make them available for listeners in Apple Podcasts and through direct feed links for other podcasting apps by following these steps:
From the WordPress Admin, go to Podcasts.
To create a podcast, complete all of the “Add New Podcast” fields and click “Add New Podcast”.
Repeat for each podcast you would like to create.
<podcast:transcript>
XML element.The Featured section of Pocket Casts is human-curated. To ensure that all podcasts have an equal opportunity at being featured, selections are made on the basis of merit.
If you’d like to suggest your podcast for a featured spot, reach out to [email protected]
For more information, [https://pocketcasts.com/podcast-producers/ read more].
Follow this documentation to submit [https://support.pocketcasts.com/article/password-protected-podcasts-2/ private and paid podcast feeds]
If you want to adjust the default number of episodes included in a podcast RSS feed, then utilize the following to do so…
<?php add_filter( 'simple_podcasting_episodes_per_page', 'podcasting_feed_episodes_per_page' ); /** * Filter how many items are displayed on the feed * Default is 250 * * @param int $qty Items count. * @return string */ function podcasting_feed_episodes_per_page( $qty ) { return 300; }
If you want to modify RSS feed items output, there is a filter for that:
<?php function podcasting_feed_item_filter( $feed_item = array(), $post_id = null, $term_id = null ) { if ( 42 === $post_id ) { $feed_item['keywords'] = 'one,two,three'; } return $feed_item; } add_filter( 'simple_podcasting_feed_item', 'podcasting_feed_item_filter', 10, 3 );
simple_podcasting_feed_title
filter hook to modify feed title (props @martinburch, @psorensen, @dkotter via #279).PULL_REQUEST_TEMPLATE.md
template (props @iamdharmesh, @jeffpaul via #286).ip
from 1.1.8
to 1.1.9
(props @dependabot, @Sidsector9 via #278).Add Transcript
button that will now show in the sidebar panel of the Podcast block (props @nateconley, @peterwilsoncc, @sksaju, @kirtangajjar via #221).axios
from 0.25.0 to 1.6.2 and @wordpress/scripts
from 26.9.0 to 26.18.0 (props @dependabot, @Sidsector9 via #263).follow-redirects
from 1.15.3 to 1.15.4 (props @dependabot, @dkotter via #269).cypress
from 11.2.0 to 13.2.0, @10up/cypress-wp-utils
from 0.1.0 to 0.2.0, @wordpress/env
from 5.4.0 to 8.7.0, cypress-localstorage-commands
from 2.2.2 to 2.2.4 and cypress-mochawesome-reporter
from 3.4.0 to 3.6.0 (props @iamdharmesh, @Sidsector9 via #254).postcss
from 8.4.27 to 8.4.31 (props @dependabot, @faisal-alvi via #256).@babel/traverse
from 7.22.8 to 7.23.2 (props @dependabot, @Sidsector9 via #257).TAXONOMY_NAME
constant to PODCASTING_TAXONOMY_NAME
(props @jayedul, @peterwilsoncc, @dkotter via #238).word-wrap
from 1.2.3 to 1.2.4 (props @dependabot, @iamdharmesh via #243).uses
updates (props @Sidsector9, @iamdharmesh via #234).<itunes:summary>
tag (props @ggutenberg, @Sidsector9, @cadic, @jeffpaul via #223).strpos
and str_replace
on PHP >= 8.1 (props @bmarshall511, @Sidsector9, @peterwilsoncc via #239).simple-git
from 3.15.1 to 3.16.0 (props @dependabot, @cadic via #215).http-cache-semantics
from 4.1.0 to 4.1.1 (props @dependabot, @cadic via #219).@sideway/formula
from 3.0.0 to 3.0.1 (props @dependabot, @cadic via #220).webpack
from 5.75.0 to 5.76.1 (props @dependabot, @faisal-alvi via #222).<description>
field (props @supersmo, @cadic via #204).json5
from 1.0.1 to 1.0.2 (props @dependabot[bot], @cadic, @jeffpaul via #212).loader-utils
from 2.0.2 to 2.0.4 (props @dependabot[bot], @cadic, @jeffpaul via #195, #198).simple-git
from 3.14.1 to 3.15.1 (props @dependabot[bot], @jeffpaul via #202).Note that this version bumps the minimum PHP version from 7.0 to 7.4 and the minimum WordPress version from 4.6 to 5.7.
got
from 10.7.0 to 11.8.5 (props @dependabot[bot], @faisal-alvi, @iamdharmesh, @jeffpaul via #185).@wordpress/env
from 4.5.0 to 5.2.0 (props @dependabot[bot], @faisal-alvi, @iamdharmesh, @jeffpaul via #185).terser
from 5.12.1 to 5.14.2 (props @dependabot via #180).<enclosure>
in feed item (props @davexpression, @cadic, @jeffpaul).is_feed
being called too early (props @tomjn, @jeffpaul).nanoid
from 3.1.25 to 3.2.0 (props @dependabot).wp-env
(props @dinhtungdu, @markjaquith, @youknowriad, @helen).@wordpress/scripts
as the build tool (props @dinhtungdu).wp-env
(props @dinhtungdu).MediaReplaceFlow
to edit the podcast media (props @jonmchristensen, @helen).