Descripción
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:
Create your podcast
From the WordPress Admin, go to Podcasts.
To create a podcast, complete all of the “Add New Podcast” fields and click “Add New Podcast”.
- Name: this title appears in Apple Podcasts and any other podcast apps.
- Slug: this is the URL-friendly version of the Name field.
- Subtitle: the subtitle also appears in Apple Podcasts and any other podcast apps.
- Artist / Author name: the artist or producer of the work.
- Podcast email: a contact email address for your podcast.
- Summary: Apple Podcasts displays this summary when browsing through podcasts.
- Copyright / License information: copyright information viewable in Apple Podcasts or other podcast apps.
- Mark as explicit: mark Yes if podcast contains adult language or adult themes.
- Language: the main language spoken in the podcast.
- Cover image: add the URL for the cover art to appear in Apple Podcasts and other podcast apps. Click “Select Image” and choose an image from the Media Library. Note that podcast cover images must be between 1400 x 1400 and 3000 x 3000 pixels in JPG or PNG formats to work on Apple Podcasts.
- Keywords: add terms to help your podcast show up in search results on Apple Podcasts and other podcast apps.
- Categories: these allow your podcast to show up for those browsing Apple Podcasts or other podcast apps by category.
Repeat for each podcast you would like to create.
Add content to your podcast
- Create a new post and assign it to one or more Podcasts using the panel labeled Podcasts.
- Upload or embed an audio file into this post using any of the usual WordPress methods. If using the new block-based WordPress editor (sometimes referred to as Gutenberg), insert a Podcast block. Only one Podcast block can be inserted per post.
- For more advanced settings, use the Podcasting meta box to mark explicit content or closed captioning available, season number, episode number, episode type, add a transcript and to optionally specify one media item in the post if you have more than one in your post. In the block-based editor, these are the block settings that appear in the sidebar when the podcast block is selected.
- Transcript: If desired, an optional transcript can be added from the settings of the Podcast block. This will add a Podcast Transcript block, allowing you to add a transcript consisting of time codes, citations, and paragrah text that can be embedded in the post, linked to an external plain HTML file, or linked in a special
<podcast:transcript>
XML element.
Submit your podcast feed to Apple Podcasts
- Each podcast has a unique feed URL you can find on the Podcasts page. This is the URL you will submit to Apple.
- Ensure you test feeds before submitting them, see Apple’s “Test a Podcast page” for more information.
- Once the validator passes, submit your podcast. Podcasts submitted to Apple Podcasts do not become immediately available for subscription by others. They are submitted for review by Apple staff, see Apple’s “Submit a podcast” page for more information.
Submit your podcast feed to Pocket Casts
- Validate your feeds at [https://www.castfeedvalidator.com/ Cast Feed Validator] before submitting them.
- Submit the podcast feed to https://pocketcasts.com/submit/.
How do I get my podcast featured on Pocket Casts?
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 curation@pocketcasts.com
For more information, [https://pocketcasts.com/podcast-producers/ read more].
How do I submit private and paid podcast feeds?
Follow this documentation to submit [https://support.pocketcasts.com/article/password-protected-podcasts-2/ private and paid podcast feeds]
Control how many episodes are listed on the feed
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;
}
Customize RSS feed
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 );
Technical Notes
- Requires PHP 5.3+.
- RSS feeds must not be disabled.
Capturas de pantalla
Bloques
Este plugin proporciona 5 bloques.
- Podcasting Podcast
- Podcasting Podcast Transcript
- Podcasting Podcast Transcript Cite
- Podcasting Podcast Transcript Time
- Podcasting Podcast Platforms
Instalación
- Install the plugin via the plugin installer, either by searching for it or uploading a .zip file.
- Activate the plugin.
- Head to Posts Podcasts and add at least one podcast.
- Create a post and insert an audio embed (or a podcast block in Gutenberg) and select a Podcast feed to include it in.
Reseñas
No hay reseñas para este plugin.
Colaboradores & Desarrolladores
“Simple Podcasting” es software de código abierto. Las siguientes personas han contribuido a este plugin.
Colaboradores“Simple Podcasting” ha sido traducido en 1 idioma. Gracias a los traductores por sus contribuciones.
Traduce “Simple Podcasting” a tu idioma.
¿Interesado en el desarrollo?
Revisa el código, echa un vistazo al repositorio SVN, o suscríbete al registro de desarrollo por RSS .
Historial de cambios
1.9.0 – 2024-11-18
- Added: New options to the Podcast block to allow for more display customization (props @barneyjeffries, @Firestorm980, @mehidi258, @jayedul, @Sidsector9, @peterwilsoncc, @faisal-alvi, @gusaus, @jeffpaul via #272).
- Changed: Update the rendering of the Podcast block to be more full featured and use all the newly added customization options (props @barneyjeffries, @Firestorm980, @mehidi258, @jayedul, @Sidsector9, @peterwilsoncc, @faisal-alvi, @gusaus, @sudar, @iamdharmesh, @jeffpaul, @dkotter via #272, #318, #320, #322).
- Changed: Bump WordPress “tested up to” version to 6.7 (props @qasumitbagthariya, @jeffpaul, @dkotter, @sonali886, @godleman, @mehul0810 via #291, #307, #325, #326).
- Changed: Bump WordPress minimum from 5.7 to 6.5 (props @qasumitbagthariya, @jeffpaul, @dkotter, @sonali886, @godleman, @mehul0810 via #291, #307, #325, #326).
- Changed: Update how we import the
PluginDocumentSettingPanel
component to use the new@wordpress/editor
package if it exists (props @gabriel-glo, @dkotter via #309). - Security: Bump
braces
from 3.0.2 to 3.0.3,pac-resolver
from 7.0.0 to 7.0.1,socks
from 2.7.1 to 2.8.3,ws
from 7.5.9 to 7.5.10 and removesip
(props @dependabot, @Sidsector9 via #297, #306). - Security: Bump
axios
from 1.7.2 to 1.7.4 (props @dependabot, @Sidsector9 via #312). - Security: Bump
express
from 4.18.2 to 4.19.2,follow-redirects
from 1.15.4 to 1.15.6, andwebpack-dev-middleware
from 5.3.3 to 5.3.4 (props @dependabot, @iamdharmesh via #290). - Security: Bump
webpack
from 5.91.0 to 5.94.0 (props @dependabot, @faisal-alvi via #315). - Security: Bump
ws
from 7.5.10 to 8.18.0,serve-static
from 1.15.0 to 1.16.2 andexpress
from 4.19.2 to 4.21.0 (props @dependabot, @Sidsector9 via #319).
1.8.0 – 2024-04-03
- Added: “Latest Podcast Episode” query block variation (props @jeffpaul, @cadic, @barneyjeffries, @faisal-alvi via #266).
- Added: Ability to add Unique Cover Art for Episodes (props @jamesburgos, @jeffpaul, @zamanq, @iamdharmesh via #273).
- Added:
simple_podcasting_feed_title
filter hook to modify feed title (props @martinburch, @psorensen, @dkotter via #279). - Fixed: Incorrect feed title (props @martinburch, @psorensen, @dkotter via #279).
- Fixed: Fatal error in WordPress 5.8 and earlier (props @peterwilsoncc, @Sidsector9 via #277).
- Changed: Disabled auto sync pull requests with target branch (props @iamdharmesh, @jeffpaul via #281).
- Changed: Removed
PULL_REQUEST_TEMPLATE.md
template (props @iamdharmesh, @jeffpaul via #286). - Changed: Replaced lee-dohm/no-response with actions/stale to help with closing no-response/stale issues (props @jeffpaul, @dkotter via #287).
- Changed: Upgrade the download-artifact from v3 to v4 (props @iamdharmesh, @jeffpaul via #285).
- Security: Bumps
ip
from1.1.8
to1.1.9
(props @dependabot, @Sidsector9 via #278).
1.7.0 – 2024-01-16
- Added: Ability to add a transcript to a podcast episode by utilizing a new Podcast Transcript block. This block is added by clicking the
Add Transcript
button that will now show in the sidebar panel of the Podcast block (props @nateconley, @peterwilsoncc, @sksaju, @kirtangajjar via #221). - Added: Support for the WordPress.org plugin preview (props @dkotter, @jeffpaul via #265).
- Fixed: Ensure we show all Podcasting terms in the Block Editor sidebar (props @dkotter, @channchetra, @Sidsector9 via #268).
- Security: Bump
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). - Security: Bump
follow-redirects
from 1.15.3 to 1.15.4 (props @dependabot, @dkotter via #269).
1.6.1 – 2023-11-21
- Added: Repo Automator GitHub Action (props @iamdharmesh, @jeffpaul via #253).
- Changed: Bump WordPress “tested up to” version to 6.4 (props @qasumitbagthariya, @jeffpaul via #259, #260).
- Changed: Ensure end-to-end tests work on Cypress v13 and bump
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 andcypress-mochawesome-reporter
from 3.4.0 to 3.6.0 (props @iamdharmesh, @Sidsector9 via #254). - Security: Bump
postcss
from 8.4.27 to 8.4.31 (props @dependabot, @faisal-alvi via #256). - Security: Bump
@babel/traverse
from 7.22.8 to 7.23.2 (props @dependabot, @Sidsector9 via #257).
1.6.0 – 2023-08-31
- Added: Ability to create a Podcast from within the Block Editor (props @Sidsector9, @iamdharmesh via #232).
- Added: New Podcast Platforms block that allows you to display icons and links to multiple podcast platforms (props @Sidsector9, @iamdharmesh, @jeffpaul via #241).
- Added: Check for minimum required PHP version before loading the plugin (props @kmgalanakis, @dkotter via #248).
- Changed: Rename
TAXONOMY_NAME
constant toPODCASTING_TAXONOMY_NAME
(props @jayedul, @peterwilsoncc, @dkotter via #238). - Changed: Bump WordPress “tested up to” version to 6.3 (props @dkotter via #248).
- Fixed: Resolved a PHP warning when creating a new podcast (props @kmgalanakis, @iamdharmesh via #247).
- Security: Bump
word-wrap
from 1.2.3 to 1.2.4 (props @dependabot, @iamdharmesh via #243).