Title: Show / Hide Section Block
Author: Happy Prime
Published: <strong>3 de Marzo de  2023</strong>
Last modified: 8 de Mayo de  2025

---

Buscar plugins

![](https://ps.w.org/show-hide-section-block/assets/banner-772x250.jpg?rev=3290039)

![](https://ps.w.org/show-hide-section-block/assets/icon-256x256.jpg?rev=3290035)

# Show / Hide Section Block

 Por [Happy Prime](https://profiles.wordpress.org/happyprime/)

[Descargar](https://downloads.wordpress.org/plugin/show-hide-section-block.3.1.0.zip)

 * [Detalles](https://cl.wordpress.org/plugins/show-hide-section-block/#description)
 * [Reseñas](https://cl.wordpress.org/plugins/show-hide-section-block/#reviews)
 * [Desarrollo](https://cl.wordpress.org/plugins/show-hide-section-block/#developers)

 [Soporte](https://wordpress.org/support/plugin/show-hide-section-block/)

## Descripción

Show / Hide Section Block provides four blocks that are used to display a group 
of `<details>` elements that each contain a `<summary>` and an arbitrary number 
of additional blocks.

 * The Show Hide Group block is a wrapping `<div>`.
 * The Show Hide Section block is a wrapping `<details>`. One or more of these blocks
   is added to a Show Hide Group block.
 * The Show Hide Summary block contains the content for a `<summary>` tag. One of
   these blocks is inside each Show Hide Section block.
 * The Show Hide Details block contains arbitrary content. One of these blocks is
   added inside each Show Hide Section block.

The HTML output for an individual section is:

    ```
    <!-- Each section block has a details element. -->
    <details class="wp-block-happyprime-show-hide-section">
        <!-- Each details element has a summary and additional, collapsible content. -->
        <summary class="wp-block-happyprime-show-hide-summary">Summary text</summary>
        <!-- Additional inner blocks of any type are populated here. -->
    </details>
    ```

The HTML output for the group is:

    ```
    <div class="wp-block-happyprime-show-hide-group">
        <!-- Optional based on attribute -->
        <button class="toggle-all" aria-expanded="false">Open all</button>
        <details class="wp-block-happyprime-show-hide-section">
            <summary class="wp-block-happyprime-show-hide-summary"></summary>
            <!-- Additional blocks to be shown/hidden -->
        </details>
        <details class="wp-block-happyprime-show-hide-section">
            <summary class="wp-block-happyprime-show-hide-summary"></summary>
            <!-- Additional blocks to be shown hidden -->
        </details>
        <!-- Additional section blocks -->
    </div>
    ```

An option is provided in the block’s side panel to toggle an “Open all”/”Close all”
button. If this is toggled on for a block, an additional `<button>` element will
be inserted and JavaScript will be used on the front-end to control the show/hide
behavior of all `<details>` elements in the group at once.

If the toggle is off, no JavaScript is loaded on the front end and only the browser’s
default behavior is used for opening and closing `<details>` elements.

## Bloques

Este plugin proporciona 4 bloques.

 *   Show Hide Group A group of accessible summaries that can be toggled to show
   or hide additional details.
 *   Show Hide Summary The summary element in a details section.
 *   Show Hide Details The remaining content in a details section.
 *   Show Hide Section A section of collapsible content contained in a details element
   with a summary.

## Reseñas

![](https://secure.gravatar.com/avatar/2b4cb01293c305d63be3132c62a9e62d1ff77970cd302a7e2271122a2392ca68?
s=60&d=retro&r=g)

### 󠀁[Simple, does what promises](https://wordpress.org/support/topic/simple-does-what-promises/)󠁿

 [segtendo](https://profiles.wordpress.org/segtendo/) 26 de Junio de 2025

Does what’s on the box.

 [ Leer 1 comentario ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/)

## Colaboradores & Desarrolladores

“Show / Hide Section Block” es software de código abierto. Las siguientes personas
han contribuido a este plugin.

Colaboradores

 *   [ Happy Prime ](https://profiles.wordpress.org/happyprime/)
 *   [ Jeremy Felt ](https://profiles.wordpress.org/jeremyfelt/)
 *   [ slocker ](https://profiles.wordpress.org/slocker/)
 *   [ philcable ](https://profiles.wordpress.org/philcable/)

[Traduce “Show / Hide Section Block” a tu idioma.](https://translate.wordpress.org/projects/wp-plugins/show-hide-section-block)

### ¿Interesado en el desarrollo?

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

## Historial de cambios

### 3.1.0

 * Automatically open an associated `<details>` element when its anchor is used 
   in a URL.
 * Update dependencies.
 * Confirm compatibility with WordPress 6.8.
 * Confirm license in plugin header.

### 3.0.0

 * Refactor block markup to improve editorial experience and formatting options.
 * Introduce `happyprime/show-hide-summary` block to manage `<summary>` content.
 * Introduce `happyprime/show-hide-details` block to manage remaningin `<details
   >` content.
 * Upgrade `happyprime/show-hide-group` and `happyprime/show-hide-section` blocks
   to API v3.
 * Add a deprecation routine to transform 2.0.x block markup into the new format.
 * Replace `@wordpress/scripts` with slimmer build configuration.
 * Bump minimum WordPress version to 6.4; confirm compatibility with 6.7.

### 2.0.3

 * Fix an issue where the front-end script was enqueued twice.

### 2.0.2

 * Fix an issue preventing Open All toggle from working in Chrome.
 * Update `@wordpress/scripts` dependency to 26.3.0.
 * Improve block organization, use of `block.json`.

### 2.0.1

 * Add a variety of `supports` options to `block.json` so that core styles can be
   applied as expected.
 * Improve asset loading so that the front-end script is only enqueued when the 
   block is in use **and** when the the open/close all option is selected.
 * Add languages directory, POT file for translations.

### 2.0.0

Initial public release.

## Meta

 *  Versión **3.1.0**
 *  Última actualización **hace 1 año**
 *  Instalaciones activas **90+**
 *  Versión de WordPress ** 6.4 o superior **
 *  Probado hasta **6.8.5**
 *  Versión de PHP ** 7.4 o superior **
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/show-hide-section-block/)
 * Etiquetas
 * [collapsible](https://cl.wordpress.org/plugins/tags/collapsible/)[details](https://cl.wordpress.org/plugins/tags/details/)
   [summary](https://cl.wordpress.org/plugins/tags/summary/)
 *  [Vista Avanzada](https://cl.wordpress.org/plugins/show-hide-section-block/advanced/)

## Calificaciones

 5 de 5 estrellas.

 *  [  1 valoración de 5 estrellas     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=5)
 *  [  0 valoraciones de 4 estrellas     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=4)
 *  [  0 valoraciones de 3 estrellas     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=3)
 *  [  0 valoraciones de 2 estrellas     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=2)
 *  [  0 valoraciones de 1 estrellas     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/show-hide-section-block/reviews/#new-post)

[Ver todas las reseñas](https://wordpress.org/support/plugin/show-hide-section-block/reviews/)

## Colaboradores

 *   [ Happy Prime ](https://profiles.wordpress.org/happyprime/)
 *   [ Jeremy Felt ](https://profiles.wordpress.org/jeremyfelt/)
 *   [ slocker ](https://profiles.wordpress.org/slocker/)
 *   [ philcable ](https://profiles.wordpress.org/philcable/)

## Soporte

¿Tienes algo que decir? ¿Necesitas ayuda?

 [Ver el foro de soporte](https://wordpress.org/support/plugin/show-hide-section-block/)