Title: Show / Hide Section Block
Author: Happy Prime
Published: <strong>2023 年 3 月 3 日</strong>
Last modified: 2025 年 5 月 8 日

---

搜索插件

![](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

 作者：[Happy Prime](https://profiles.wordpress.org/happyprime/)

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

 * [详情](https://cn.wordpress.org/plugins/show-hide-section-block/#description)
 * [评价](https://cn.wordpress.org/plugins/show-hide-section-block/#reviews)
 * [开发进展](https://cn.wordpress.org/plugins/show-hide-section-block/#developers)

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

## 描述

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.

## 区块

该插件提供了 4 个区块.

 *   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.

## 评价

![](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/) 2025 年 6 月 26 日

Does what’s on the box.

 [ 阅读所有1条评价 ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/)

## 贡献者及开发者

「Show / Hide Section Block」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ 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/)

[帮助将「Show / Hide Section Block」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/show-hide-section-block)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/show-hide-section-block/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/show-hide-section-block/)，或通过
[RSS](https://plugins.trac.wordpress.org/log/show-hide-section-block/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/show-hide-section-block/)。

## 更新日志

### 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.

## 额外信息

 *  版本 **3.1.0**
 *  最后更新：**1 年前**
 *  活跃安装数量 **90+**
 *  WordPress 版本 ** 6.4 或更高版本 **
 *  已测试的最高版本为 **6.8.5**
 *  PHP 版本 ** 7.4 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/show-hide-section-block/)
 * 标签
 * [collapsible](https://cn.wordpress.org/plugins/tags/collapsible/)[details](https://cn.wordpress.org/plugins/tags/details/)
   [summary](https://cn.wordpress.org/plugins/tags/summary/)
 *  [高级视图](https://cn.wordpress.org/plugins/show-hide-section-block/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/show-hide-section-block/reviews/?filter=2)
 *  [  0 条 1 星评价     ](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)

[查看全部评论](https://wordpress.org/support/plugin/show-hide-section-block/reviews/)

## 贡献者

 *   [ 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/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/show-hide-section-block/)