Descripción
Configura múltiples feeds de pódcast utilizando las entradas incluidas en WordPress. Incluye un bloque de pódcast y uno de transcripción de pódcast 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, 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.
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 el feed del pódcast 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 5 bloques.
- Podcasting Podcast
- Podcasting Podcast Transcript
- Podcasting Podcast Transcript Cite
- Podcasting Podcast Transcript Time
- Podcasting Podcast Platforms
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» está 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.
Registro 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).