Title: Simple Podcasting
Author: 10up
Published: <strong>29 de junio de 2018</strong>
Last modified: 19 de mayo de 2025

---

Buscar plugins

![](https://ps.w.org/simple-podcasting/assets/banner-772x250.png?rev=2338762)

![](https://ps.w.org/simple-podcasting/assets/icon-256x256.png?rev=2338762)

# Simple Podcasting

 Por [10up](https://profiles.wordpress.org/10up/)

[Descargar](https://downloads.wordpress.org/plugin/simple-podcasting.1.9.1.zip)

[Vista previa](https://es.wordpress.org/plugins/simple-podcasting/?preview=1)

 * [Detalles](https://es.wordpress.org/plugins/simple-podcasting/#description)
 * [Valoraciones](https://es.wordpress.org/plugins/simple-podcasting/#reviews)
 *  [Instalación](https://es.wordpress.org/plugins/simple-podcasting/#installation)
 * [Desarrollo](https://es.wordpress.org/plugins/simple-podcasting/#developers)

 [Soporte](https://wordpress.org/support/plugin/simple-podcasting/)

## 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»](https://help.apple.com/itc/podcasts_connect/#/itcac471c970)
   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](https://help.apple.com/itc/podcasts_connect/#/itcd88ea40b9)
   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 7.4 o superior.
 * Los feed RSS no pueden estar deshabilitados.

## Capturas

[⌊Podcast in block editor⌉⌊Podcast in block editor⌉[

Podcast in block editor

[⌊Podcast Platforms block in the block editor⌉⌊Podcast Platforms block in the block
editor⌉[

Podcast Platforms block in the block editor

[⌊Creando un podcast⌉⌊Creando un podcast⌉[

Creando un podcast

[⌊Feed del podcast⌉⌊Feed del podcast⌉[

Feed del podcast

[⌊Podcast Grid pattern⌉⌊Podcast Grid pattern⌉[

Podcast Grid pattern

[⌊Podcast Transcript block⌉⌊Podcast Transcript block⌉[

Podcast Transcript block

## Bloques

Este plugin proporciona 5 bloques.

 *   Podcasting Podcast
 *   Podcasting Podcast Transcript
 *   Podcasting Podcast Transcript Cite
 *   Podcasting Podcast Transcript Time
 *   Podcasting Podcast Platforms

## Instalación

 1. Instala el plugin a través del instalador de plugins, ya sea buscándolo o subiendo
    un archivo .zip.
 2. Activa el plugin.
 3. Dirígete a Entradas  Podcasts y añade al menos un podcast.
 4. 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

 *   [ 10up ](https://profiles.wordpress.org/10up/)
 *   [ Helen Hou-Sandi ](https://profiles.wordpress.org/helen/)
 *   [ Adam Silverstein ](https://profiles.wordpress.org/adamsilverstein/)
 *   [ Jake Goldman ](https://profiles.wordpress.org/jakemgold/)
 *   [ Jeffrey Paul ](https://profiles.wordpress.org/jeffpaul/)
 *   [ Max Lyuchin ](https://profiles.wordpress.org/cadic/)

«Simple Podcasting» está traducido en 1 idioma. Gracias a [los traductores](https://translate.wordpress.org/projects/wp-plugins/simple-podcasting/contributors)
por sus contribuciones.

[Traduce «Simple Podcasting» a tu idioma.](https://translate.wordpress.org/projects/wp-plugins/simple-podcasting)

### ¿Interesado en el desarrollo?

[Revisa el código](https://plugins.trac.wordpress.org/browser/simple-podcasting/),
echa un vistazo al [repositorio SVN](https://plugins.svn.wordpress.org/simple-podcasting/)
o suscríbete al [registro de desarrollo](https://plugins.trac.wordpress.org/log/simple-podcasting/)
por [RSS](https://plugins.trac.wordpress.org/log/simple-podcasting/?limit=100&mode=stop_on_copy&format=rss).

## Registro de cambios

#### 1.9.1 – 2025-05-16

 * **Added:** Screenshots for all new features (props [@gabriel-glo](https://github.com/gabriel-glo),
   [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9),
   [@dkotter](https://github.com/dkotter) via [#310](https://github.com/10up/simple-podcasting/pull/310)).
 * **Changed:** Bump WordPress «tested up to» version to 6.8 (props [@jeffpaul](https://github.com/jeffpaul)
   via [#335](https://github.com/10up/simple-podcasting/pull/335), [#336](https://github.com/10up/simple-podcasting/pull/336)).
 * **Changed:** Bump WordPress minimum from 6.5 to 6.6 (props [@jeffpaul](https://github.com/jeffpaul)
   via [#335](https://github.com/10up/simple-podcasting/pull/335), [#336](https://github.com/10up/simple-podcasting/pull/336)).
 * **Fixed:** Issue where podcast feed title unexpectedly adding site title (props
   [@kirtangajjar](https://github.com/kirtangajjar), [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@dabowman](https://github.com/dabowman) via [#295](https://github.com/10up/simple-podcasting/pull/295)).
 * **Security:** Bump `@wordpress/scripts` from 27.9.0 to 30.6.0 (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#328](https://github.com/10up/simple-podcasting/pull/328)).
 * **Security:** Bump `cookie` from 0.4.2 to 0.7.1, `express` from 4.21.0 to 4.21.2,`
   @wordpress/e2e-test-utils-playwright` from 0.26.0 to 1.18.0, `serialize-javascript`
   from 6.0.0 to 6.0.2 and `mocha` from 10.4.0 to 11.1.0 (props [@dependabot](https://github.com/apps/dependabot),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#332](https://github.com/10up/simple-podcasting/pull/332)).
 * **Security:** Bump `axios` from 1.7.4 to 1.9.0 and `http-proxy-middleware` from
   2.0.6 to 2.0.9 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#338](https://github.com/10up/simple-podcasting/pull/338)).

#### 1.9.0 – 2024-11-18

 * **Added:** New options to the Podcast block to allow for more display customization(
   props [@barneyjeffries](https://github.com/barneyjeffries), [@Firestorm980](https://github.com/Firestorm980),
   [@mehidi258](https://github.com/mehidi258), [@jayedul](https://github.com/jayedul),
   [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@faisal-alvi](https://github.com/faisal-alvi), [@gusaus](https://github.com/gusaus),
   [@jeffpaul](https://github.com/jeffpaul) via [#272](https://github.com/10up/simple-podcasting/pull/272)).
 * **Changed:** Update the rendering of the Podcast block to be more full featured
   and use all the newly added customization options (props [@barneyjeffries](https://github.com/barneyjeffries),
   [@Firestorm980](https://github.com/Firestorm980), [@mehidi258](https://github.com/mehidi258),
   [@jayedul](https://github.com/jayedul), [@Sidsector9](https://github.com/Sidsector9),
   [@peterwilsoncc](https://github.com/peterwilsoncc), [@faisal-alvi](https://github.com/faisal-alvi),
   [@gusaus](https://github.com/gusaus), [@sudar](https://github.com/sudar), [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter)
   via [#272](https://github.com/10up/simple-podcasting/pull/272), [#318](https://github.com/10up/simple-podcasting/pull/318),
   [#320](https://github.com/10up/simple-podcasting/pull/320), [#322](https://github.com/10up/simple-podcasting/pull/322)).
 * **Changed:** Bump WordPress «tested up to» version to 6.7 (props [@qasumitbagthariya](https://github.com/qasumitbagthariya),
   [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter),
   [@sonali886](https://github.com/sonali886), [@godleman](https://github.com/godleman),
   [@mehul0810](https://github.com/mehul0810) via [#291](https://github.com/10up/simple-podcasting/pull/291),
   [#307](https://github.com/10up/simple-podcasting/pull/307), [#325](https://github.com/10up/simple-podcasting/pull/325),
   [#326](https://github.com/10up/simple-podcasting/pull/326)).
 * **Changed:** Bump WordPress minimum from 5.7 to 6.5 (props [@qasumitbagthariya](https://github.com/qasumitbagthariya),
   [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter),
   [@sonali886](https://github.com/sonali886), [@godleman](https://github.com/godleman),
   [@mehul0810](https://github.com/mehul0810) via [#291](https://github.com/10up/simple-podcasting/pull/291),
   [#307](https://github.com/10up/simple-podcasting/pull/307), [#325](https://github.com/10up/simple-podcasting/pull/325),
   [#326](https://github.com/10up/simple-podcasting/pull/326)).
 * **Changed:** Update how we import the `PluginDocumentSettingPanel` component 
   to use the new `@wordpress/editor` package if it exists (props [@gabriel-glo](https://github.com/gabriel-glo),
   [@dkotter](https://github.com/dkotter) via [#309](https://github.com/10up/simple-podcasting/pull/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 removes `ip`(
   props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9)
   via [#297](https://github.com/10up/simple-podcasting/pull/297), [#306](https://github.com/10up/simple-podcasting/pull/306)).
 * **Security:** Bump `axios` from 1.7.2 to 1.7.4 (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#312](https://github.com/10up/simple-podcasting/pull/312)).
 * **Security:** Bump `express` from 4.18.2 to 4.19.2, `follow-redirects` from 1.15.4
   to 1.15.6, and `webpack-dev-middleware` from 5.3.3 to 5.3.4 (props [@dependabot](https://github.com/apps/dependabot),
   [@iamdharmesh](https://github.com/iamdharmesh) via [#290](https://github.com/10up/simple-podcasting/pull/290)).
 * **Security:** Bump `webpack` from 5.91.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#315](https://github.com/10up/simple-podcasting/pull/315)).
 * **Security:** Bump `ws` from 7.5.10 to 8.18.0, `serve-static` from 1.15.0 to 
   1.16.2 and `express` from 4.19.2 to 4.21.0 (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#319](https://github.com/10up/simple-podcasting/pull/319)).

#### 1.8.0 – 2024-04-03

 * **Added:** «Latest Podcast Episode» query block variation (props [@jeffpaul](https://github.com/jeffpaul),
   [@cadic](https://github.com/cadic), [@barneyjeffries](https://github.com/barneyjeffries),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#266](https://github.com/10up/simple-podcasting/pull/266)).
 * **Added:** Ability to add Unique Cover Art for Episodes (props [@jamesburgos](https://github.com/jamesburgos),
   [@jeffpaul](https://github.com/jeffpaul), [@zamanq](https://github.com/zamanq),
   [@iamdharmesh](https://github.com/iamdharmesh) via [#273](https://github.com/10up/simple-podcasting/pull/273)).
 * **Added:** `simple_podcasting_feed_title` filter hook to modify feed title (props
   [@martinburch](https://github.com/martinburch), [@psorensen](https://github.com/psorensen),
   [@dkotter](https://github.com/dkotter) via [#279](https://github.com/10up/simple-podcasting/pull/279)).
 * **Fixed:** Incorrect feed title (props [@martinburch](https://github.com/martinburch),
   [@psorensen](https://github.com/psorensen), [@dkotter](https://github.com/dkotter)
   via [#279](https://github.com/10up/simple-podcasting/pull/279)).
 * **Fixed:** Fatal error in WordPress 5.8 and earlier (props [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@Sidsector9](https://github.com/Sidsector9) via [#277](https://github.com/10up/simple-podcasting/pull/277)).
 * **Changed:** Disabled auto sync pull requests with target branch (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#281](https://github.com/10up/simple-podcasting/pull/281)).
 * **Changed:** Removed `PULL_REQUEST_TEMPLATE.md` template (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#286](https://github.com/10up/simple-podcasting/pull/286)).
 * **Changed:** Replaced [lee-dohm/no-response](https://github.com/lee-dohm/no-response)
   with [actions/stale](https://github.com/actions/stale) to help with closing no-
   response/stale issues (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter)
   via [#287](https://github.com/10up/simple-podcasting/pull/287)).
 * **Changed:** Upgrade the download-artifact from v3 to v4 (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#285](https://github.com/10up/simple-podcasting/pull/285)).
 * **Security:** Bumps `ip` from `1.1.8` to `1.1.9` (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#278](https://github.com/10up/simple-podcasting/pull/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](https://github.com/nateconley),
   [@peterwilsoncc](https://github.com/peterwilsoncc), [@sksaju](https://github.com/sksaju),
   [@kirtangajjar](https://github.com/kirtangajjar) via [#221](https://github.com/10up/simple-podcasting/pull/221)).
 * **Added:** Support for the WordPress.org plugin preview (props [@dkotter](https://github.com/dkotter),
   [@jeffpaul](https://github.com/jeffpaul) via [#265](https://github.com/10up/simple-podcasting/pull/265)).
 * **Fixed:** Ensure we show all Podcasting terms in the Block Editor sidebar (props
   [@dkotter](https://github.com/dkotter), [@channchetra](https://github.com/channchetra),
   [@Sidsector9](https://github.com/Sidsector9) via [#268](https://github.com/10up/simple-podcasting/pull/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](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9)
   via [#263](https://github.com/10up/simple-podcasting/pull/263)).
 * **Security:** Bump `follow-redirects` from 1.15.3 to 1.15.4 (props [@dependabot](https://github.com/apps/dependabot),
   [@dkotter](https://github.com/dkotter) via [#269](https://github.com/10up/simple-podcasting/pull/269)).

#### 1.6.1 – 2023-11-21

 * **Added:** Repo Automator GitHub Action (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#253](https://github.com/10up/simple-podcasting/pull/253)).
 * **Changed:** Bump WordPress «tested up to» version to 6.4 (props [@qasumitbagthariya](https://github.com/qasumitbagthariya),
   [@jeffpaul](https://github.com/jeffpaul) via [#259](https://github.com/10up/simple-podcasting/pull/259),
   [#260](https://github.com/10up/simple-podcasting/pull/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 and `
   cypress-mochawesome-reporter` from 3.4.0 to 3.6.0 (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@Sidsector9](https://github.com/Sidsector9) via [#254](https://github.com/10up/simple-podcasting/pull/254)).
 * **Security:** Bump `postcss` from 8.4.27 to 8.4.31 (props [@dependabot](https://github.com/apps/dependabot),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#256](https://github.com/10up/simple-podcasting/pull/256)).
 * **Security:** Bump `@babel/traverse` from 7.22.8 to 7.23.2 (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#257](https://github.com/10up/simple-podcasting/pull/257)).

#### 1.6.0 – 2023-08-31

 * **Added:** Ability to create a Podcast from within the Block Editor (props [@Sidsector9](https://github.com/Sidsector9),
   [@iamdharmesh](https://github.com/iamdharmesh) via [#232](https://github.com/10up/simple-podcasting/pull/232)).
 * **Added:** New Podcast Platforms block that allows you to display icons and links
   to multiple podcast platforms (props [@Sidsector9](https://github.com/Sidsector9),
   [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul)
   via [#241](https://github.com/10up/simple-podcasting/pull/241)).
 * **Added:** Check for minimum required PHP version before loading the plugin (
   props [@kmgalanakis](https://github.com/kmgalanakis), [@dkotter](https://github.com/dkotter)
   via [#248](https://github.com/10up/simple-podcasting/pull/248)).
 * **Changed:** Rename `TAXONOMY_NAME` constant to `PODCASTING_TAXONOMY_NAME` (props
   [@jayedul](https://github.com/jayedul), [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@dkotter](https://github.com/dkotter) via [#238](https://github.com/10up/simple-podcasting/pull/238)).
 * **Changed:** Bump WordPress «tested up to» version to 6.3 (props [@dkotter](https://github.com/dkotter)
   via [#248](https://github.com/10up/simple-podcasting/pull/248)).
 * **Fixed:** Resolved a PHP warning when creating a new podcast (props [@kmgalanakis](https://github.com/kmgalanakis),
   [@iamdharmesh](https://github.com/iamdharmesh) via [#247](https://github.com/10up/simple-podcasting/pull/247)).
 * **Security:** Bump `word-wrap` from 1.2.3 to 1.2.4 (props [@dependabot](https://github.com/apps/dependabot),
   [@iamdharmesh](https://github.com/iamdharmesh) via [#243](https://github.com/10up/simple-podcasting/pull/243)).

[View historical changelog details here](https://github.com/10up/simple-podcasting/blob/develop/CHANGELOG.md).

## Plugin de la comunidad

Este plugin está desarrollado y recibe soporte de una comunidad. [Contribuye a este plugin](https://github.com/10up/simple-podcasting)

## Meta

 *  Versión **1.9.1**
 *  Última actualización **hace 1 año**
 *  Instalaciones activas **100+**
 *  Versión de WordPress ** 6.6 o superior **
 *  Probado hasta **6.8.5**
 *  Versión de PHP ** 7.4 o superior **
 *  Idiomas
 * [English (US)](https://wordpress.org/plugins/simple-podcasting/) y [Spanish (Spain)](https://es.wordpress.org/plugins/simple-podcasting/).
 *  [Traducir a tu idioma](https://translate.wordpress.org/projects/wp-plugins/simple-podcasting)
 * Etiquetas:
 * [apple podcasts](https://es.wordpress.org/plugins/tags/apple-podcasts/)[episode](https://es.wordpress.org/plugins/tags/episode/)
   [podcast](https://es.wordpress.org/plugins/tags/podcast/)[podcasting](https://es.wordpress.org/plugins/tags/podcasting/)
   [season](https://es.wordpress.org/plugins/tags/season/)
 *  [Vista avanzada](https://es.wordpress.org/plugins/simple-podcasting/advanced/)

## Valoraciones

Aún no se han enviado valoraciones.

[Your review](https://wordpress.org/support/plugin/simple-podcasting/reviews/#new-post)

[Ver todas las valoraciones](https://wordpress.org/support/plugin/simple-podcasting/reviews/)

## Colaboradores

 *   [ 10up ](https://profiles.wordpress.org/10up/)
 *   [ Helen Hou-Sandi ](https://profiles.wordpress.org/helen/)
 *   [ Adam Silverstein ](https://profiles.wordpress.org/adamsilverstein/)
 *   [ Jake Goldman ](https://profiles.wordpress.org/jakemgold/)
 *   [ Jeffrey Paul ](https://profiles.wordpress.org/jeffpaul/)
 *   [ Max Lyuchin ](https://profiles.wordpress.org/cadic/)

## Soporte

¿Tienes algo que decir? ¿Necesitas ayuda?

 [Ver el foro de soporte](https://wordpress.org/support/plugin/simple-podcasting/)