Descripción
Configura fácilmente múltiples fuentes de podcast utilizando las publicaciones integradas de WordPress. Incluye un bloque de podcast para el editor de bloques de WordPress (también conocido como Gutenberg).
El podcasting es un método para distribuir episodios de audio y video a través de un feed al que los oyentes pueden suscribirse. Puedes publicar podcasts en tu sitio de WordPress y hacerlos disponibles para los oyentes en Apple Podcasts y a través de enlaces de feed directos para otras aplicaciones de podcast siguiendo estos pasos:
Crea tu 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».
- Nombre: este título aparece en Apple Podcasts y en cualquier otra aplicación de podcast.
- Slug: this is the URL-friendly version of the Name field.
- Subtítulo: el subtítulo también aparece en Apple Podcasts y en cualquier otra aplicación de podcast.
- Nombre del artista / autor: el nombre del artista o productor de la obra.
- Correo electrónico del podcast: una dirección de correo electrónico de contacto para tu podcast.
- Resumen: Apple Podcasts muestra este resumen al navegar por los podcasts.
- Información de derechos de autor / licencia: información de derechos de autor visible en Apple Podcasts u otras aplicaciones de podcast.
- Mark as explicit: mark Yes if podcast contains adult language or adult themes.
- Idioma: el idioma principal hablado en el 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.
- Palabras clave: añade términos para ayudar a que tu podcast aparezca en los resultados de búsqueda en Apple Podcasts y otras aplicaciones de podcast.
- Categorías: estas permiten que tu podcast aparezca para aquellos que navegan por Apple Podcasts u otras aplicaciones de podcast por categoría.
Repite para cada podcast que quieras crear.
Añade contenido a tu podcast
- Create a new post and assign it to one or more Podcasts using the panel labeled Podcasts.
- Carga o incrusta un archivo de audio en esta publicación utilizando cualquiera de los métodos habituales de WordPress. Si estás utilizando el nuevo editor de WordPress basado en bloques (también conocido como Gutenberg), inserta un bloque de podcast. Solo se puede insertar un bloque de podcast por publicación.
- For more advanced settings, use the Podcasting meta box to mark explicit content or closed captioning available, season number, episode number, episode type 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.
Envia el feed de tu podcast a 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.
Envía la fuente de tu podcast a Pocket Casts.
- Valida tus fuentes en [https://www.castfeedvalidator.com/ Cast Feed Validator] antes de enviarlas.
- Envía la fuente del podcast a https://pocketcasts.com/submit/.
¿Cómo puedo hacer que mi podcast aparezca destacado en 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.
Si deseas sugerir tu podcast para un lugar destacado, ponte en contacto con curation@pocketcasts.com
.
Para obtener más información, [https://pocketcasts.com/podcast-producers/ lee más].
¿Cómo puedo enviar fuentes de podcast privadas y de pago?
Sigue esta documentación para enviar [https://support.pocketcasts.com/article/password-protected-podcasts-2/ fuentes de podcast privadas y de pago].
Controla la cantidad de episodios que se muestran en el 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;
}
Personalizar el feed RSS
Si deseas modificar la salida de los elementos del feed RSS, existe un filtro para eso:
<?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 );
Notas técnicas
- Requiere PHP 5.3+.
- Los feed RSS no pueden estar deshabilitados.
Capturas
Bloques
Este plugin proporciona 1 bloque.
- Simple Podcasting
Instalación
- Instala el plugin a través del instalador de plugins, ya sea buscándolo o subiendo un archivo .zip.
- Activa el plugin.
- Dirígete a Entradas → Podcasts y añade al menos un podcast.
- Crea una publicación e inserta un código de incrustación de audio (o un bloque de podcast en Gutenberg) y selecciona una fuente de podcast para incluirla.
Reseñas
No hay valoraciones para este plugin.
Colaboradores y desarrolladores
«Simple Podcasting» es un software de código abierto. Las siguientes personas han colaborado con este plugin.
Colaboradores«Simple Podcasting» ha sido traducido a 1 idioma local. 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.
Registro de cambios
1.4.0 – 2023-01-06
- Added: New podcast onboarding flow (props @Sidsector9, @cadic, @iamdharmesh, @helen, @jeffpaul, @Nicolas-knight, @jnetek via #193).
- Added: Description field to RSS feed (props @supersmo, @cadic via #204).
- Added: Build pre-release zip GitHub Action (props @Sidsector9, @iamdharmesh, @jeffpaul, @dkotter, @faisal-alvi, @vikrampm1 via #199).
- Changed: Bump WordPress «tested up to» to 6.1 (props @jayedul, @dkotter via #201).
- Changed: Cypress integration migrated to 11+ (props @jayedul, @cadic, @jeffpaul via #205).
- Changed: Updated docs to add podcast feed to Pocket Casts (props @jeffpaul, @Sidsector9, @cadic via #192).
- Fixed: Spotify not accepting feeds with empty
<description>
field (props @supersmo, @cadic via #204). - Security: Bump
json5
from 1.0.1 to 1.0.2 (props @dependabot[bot], @cadic, @jeffpaul via #212). - Security: Bump
loader-utils
from 2.0.2 to 2.0.4 (props @dependabot[bot], @cadic, @jeffpaul via #195, #198). - Seguridad: Actualiza
simple-git
de 3.14.1 a 3.15.1 (atribución a @dependabot[bot], @jeffpaul a través de #202).
1.3.0 – 2022-10-18
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.
- Added Podcasts Taxonomy term(s) added in block settings (props @helen, @jeffpaul, @faisal-alvi, @peterwilsoncc, @cadic via #183).
- Added Type of show setting for the podcast (props @cadic, @faisal-alvi, @jeffpaul via #188).
- Changed Podcasting Categories and Sub-Categories (props @zamanq, @jeffpaul, @dkotter, @cadic, @dchucks via #179).
- Changed Bumped minimum PHP version required from 7.0 to 7.4 (props @peterwilsoncc, @cadic, @jeffpaul, @vikrampm1 via #184).
- Changed Bumped minimum WordPress version required from 4.6 to 5.7 (props @peterwilsoncc, @cadic, @jeffpaul, @vikrampm1 via #184).
- Changed Upgraded dependencies (props @cadic, @faisal-alvi via #187).
- Fixed Saving podcast enclosure with Classic Editor (props @cadic, @faisal-alvi via #186).
- Security Bump
got
from 10.7.0 to 11.8.5 (props @dependabot[bot], @faisal-alvi, @iamdharmesh, @jeffpaul via #185). - Security Bump
@wordpress/env
from 4.5.0 to 5.2.0 (props @dependabot[bot], @faisal-alvi, @iamdharmesh, @jeffpaul via #185).
1.2.4 – 2022-07-27
- Added: Season number, episode number and episode type attributes can now be stored with a Podcast (props @zamanq, @dchucks, @cadic via #175).
- Changed: Bump WordPress version «tested up to» 6.0 (props @cadic via #171).
- Fixed: Incorrect Language value in the Feed (props @zamanq, @dchucks, @cadic via #176).
- Security: Bump
terser
from 5.12.1 to 5.14.2 (props @dependabot via #180).
1.2.3 – 2022-04-28
- Added Compatibility tests against PHP 7 and 8 (props @cadic, @dkotter, @jeffpaul).
- Added Default Pull Request Reviewers via CODEOWNERS file (props @jeffpaul, @cadic).
- Added Dependency security scanning (props @jeffpaul).
- Changed Unit tests against PHP 8 (props @cadic, @dkotter, @jeffpaul).
- Changed Bump required PHP 7.0 (props @cadic, @dkotter, @jeffpaul).
- Changed Replaced custom commands with @10up/cypress-wp-utils in end-to-end tests (props @dinhtungdu, @cadic, @jeffpaul).
- Fixed Missing
<enclosure>
in feed item (props @davexpression, @cadic, @jeffpaul). - Fixed Failing Cypress test on WP Minimum (props @dinhtungdu, @cadic, @jeffpaul).
- Fixed Updated badges in readme (props @cadic, @jeffpaul).
- Security Upgraded node dependencies (props @cadic, @dharm1025, @jeffpaul).
- Security Bump async from 2.6.3 to 2.6.4 (props @dependabot).
- Security Bump node-forge from 1.2.1 to 1.3.0 (props @dependabot).
- Security Bump minimist from 1.2.5 to 1.2.6 (props @dependabot.
1.2.2 – 2022-03-01
- Added: Filter ‘simple_podcasting_feed_item’ to modify RSS feed item data before output (props @cadic, @dharm1025, @jeffpaul).
- Added: Unit tests (props @cadic, @dkotter, @jeffpaul).
- Added: GitHub action job to run PHPCS (props @cadic, @dkotter).
- Added: Auto-create pot file in languages folder during the build process (props @dkotter, @cadic).
- Changed: Bump WordPress «tested up to» version 5.9 (props @sudip-10up, @cadic, @peterwilsoncc).
- Fixed: End-to-end tests with WordPress 5.9 element IDs (props@cadic, @felipeelia, @dinhtungdu).
- Fixed: Podcast feed link output on Edit Podcast screen (props @mehidi258, @jeffpaul, @cadic).
- Fixed: Bug fix for
is_feed
being called too early (props @tomjn, @jeffpaul). - Fixed: Missing and incorrect text-domain (props @dkotter, @cadic).
- Security: Bump
nanoid
from 3.1.25 to 3.2.0 (props @dependabot).
1.2.1
- Added: Filter ‘simple_podcasting_episodes_per_page’ to override default of 250 episodes per podcast feed (props @pabamato, @dinhtungdu, @monomo111, @jeffpaul, @jakemgold).
- Added: End-to-end testing using Cypress and
wp-env
(props @dinhtungdu, @markjaquith, @youknowriad, @helen). - Added: Issue management automation via GitHub Actions (props @jeffpaul).
- Added: Pull request template (props @jeffpaul, @dinhtungdu).
- Changed: Default number of episodes in RSS feeds increased from 10 to 250 (props @pabamato, @dinhtungdu, @monomo111, @jeffpaul, @jakemgold).
- Changed: Use
@wordpress/scripts
as the build tool (props @dinhtungdu). - Changed: Bump WordPress version “tested up to” 5.8.1 (props David Chabbi, @jeffpaul,@pabamato).
- Changed: Documentation updates (props @meszarosrob, @dinhtungdu).
- Fixed: ‘podcast’ block core dependency (props @pabamato, @dinhtungdu, @monomo111, @jeffpaul, @jakemgold).
- Fixed: Minimum WordPress version used by
wp-env
(props @dinhtungdu).
1.2.0
- Added: Podcast image in the taxonomy list table view (props @jonmchristensen, @helen).
- Added: Ability for user to transform to/from the podcast and audio blocks (props @jonmchristensen, @helen).
- Added: Core
MediaReplaceFlow
to edit the podcast media (props @jonmchristensen, @helen). - Changed: GitHub Actions from HCL to YAML workflow syntax (props @helen).
- Changed: Stop committing built files to Git (props @helen).
- Changed: Documentation updates (props @jeffpaul, @nhalstead).
- Fixed: Using the upload or drag and drop instead of media library populates duration and mimetype (props @jonmchristensen, @helen).
- Fixed: Issue where it is possible to add non-audio files to the Podcast block (props @mattheu).
- Fixed: Issue where React would throw an error relating to keys for list items (props @jonmchristensen, @helen).
- Fixed: Ensure podcast-related meta is deleted after block is removed. (props @dinhtungdu).
1.1.1
- Fixed: Compatibility with WordPress 5.2 (props @adamsilverstein).
1.1.0
- Added: Retrieve metadata for externally hosted audio files in the block editor.
- Added: Specify email address for a given podcast.
- Added: Set language for a given podcast.
- Tweaked: Clearer language on the add new podcast form.
- Bug fix: Delete all associated meta when block is removed from a post.
- Bug fix: Restore all block editor functionality to align with Gutenberg/block changes.
- Bug fix: Fully clear add new form after creating a new podcast.
- Developers: Add linting for coding standards.
1.0.1
- Bug fix: Properly output podcast categories and subcategories in the feed.
- Bug fix: Avoid a minified JS error when selecting a podcast image.
- Bug fix: Display podcast summary on edit form.
1.0
- Initial plugin release.