kaiseki/wp-block-content-filter 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kaiseki/wp-block-content-filter

Composer 安装命令:

composer require kaiseki/wp-block-content-filter

包简介

Filter and transform WordPress block render output through a configurable pipeline of per-block filters.

README 文档

README

Filter and transform WordPress block render output through a configurable pipeline of per-block filters.

BlockContentFilterRegistry hooks into the render_block filter and, for each rendered block, runs the filters whose block-name pattern matches the block's blockName (matched with fnmatch, so core/* matches every core block). Each filter implements BlockContentFilterInterface and receives the rendered HTML plus the block's data, returning the (possibly transformed) HTML.

The package ships a few ready-made filters:

  • CoreParagraphClassFilter / CoreHeadingClassFilter / CoreListClassFilter — add a CSS class to the outermost element of the rendered block.
  • CoreHtmlWrapFilter — wrap the rendered block in a <div class="…">.
  • DisableFullscreenMode — a standalone hook provider that turns off the block editor's fullscreen mode.

Installation

composer require kaiseki/wp-block-content-filter

Requires PHP 8.2 or newer.

Usage

Register ConfigProvider with your laminas-style config aggregator, then declare a block_content_filter map of fnmatch block-name patterns to a list of filter class-strings (or instances). ConfigProvider already wires BlockContentFilterRegistry into hook.provider, so the registry runs automatically once ConfigProvider is registered — you only need to supply the filter map (do not add BlockContentFilterRegistry to hook.provider yourself, or it will be registered twice and the pipeline will run twice):

use Kaiseki\WordPress\BlockContentFilter\Filter\CoreHeadingClassFilter;
use Kaiseki\WordPress\BlockContentFilter\Filter\CoreParagraphClassFilter;

return [
    'block_content_filter' => [
        // Each key is an fnmatch pattern matched against the block's blockName.
        // Each value is a list of BlockContentFilterInterface class-strings (or
        // instances) run as a pipeline over the rendered block HTML.
        'core/paragraph' => [
            CoreParagraphClassFilter::class,
        ],
        'core/heading' => [
            CoreHeadingClassFilter::class,
        ],
    ],
];

Each filter class-string is resolved through the container (Config::initClassMap), so a filter that needs constructor arguments can be registered as a container service; the bundled filters work out of the box with sensible defaults.

The standalone DisableFullscreenMode provider is not registered by ConfigProvider — opt into it explicitly by adding it to your own hook.provider list:

use Kaiseki\WordPress\BlockContentFilter\DisableFullscreenMode;

return [
    'hook' => [
        'provider' => [
            DisableFullscreenMode::class,
        ],
    ],
];

Write your own filter by implementing BlockContentFilterInterface:

use Kaiseki\WordPress\BlockContentFilter\BlockContentFilterInterface;

final class MyFilter implements BlockContentFilterInterface
{
    /**
     * @param array<mixed> $block
     */
    public function __invoke(string $content, array $block): string
    {
        return $content . '<!-- filtered -->';
    }
}

Development

composer install
composer check    # check-deps, cs-check, phpstan
composer phpunit

License

MIT — see LICENSE.

kaiseki/wp-block-content-filter 适用场景与选型建议

kaiseki/wp-block-content-filter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 703 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 03 月 05 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「module」 「wordpress」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 kaiseki/wp-block-content-filter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 kaiseki/wp-block-content-filter 我们能提供哪些服务?
定制开发 / 二次开发

基于 kaiseki/wp-block-content-filter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 703
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 14
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-03-05