rwsite/wp-field
Composer 安装命令:
composer require rwsite/wp-field
包简介
WP_Field v4 HTML fields library for WordPress with fluent API, 52 field types, legacy compatibility, React/Vanilla integrations, conditional logic, and storage strategies.
关键字:
README 文档
README
WP_Field
HTML Fields Library for WordPress
Final v4 release for building custom frameworks, settings systems, and admin UI.
Fluent API, 52 field types, legacy compatibility, and React/Vanilla integrations where needed.
Features • Installation • Quick Start • Architecture • Field Types • Demo Pages • Development • RU version
Modern version
WP_Field v4 is the production-ready release of the modern field API. Use it for new integrations and for migrations away from ad-hoc legacy arrays. The modern layer gives you a typed, fluent field builder and a cleaner server-rendered integration model for WordPress forms.
This is not a WordPress-free browser runtime. Interactive fields still rely on core WordPress admin assets where that is the correct production integration.
Features
What's new in v4
- Modern API is the primary integration layer for new code.
- Legacy runtime is isolated in
vanilla/and remains available for compatibility. - Standalone vanilla export builds a separate installable plugin archive.
- Demo pages are split by purpose: legacy examples, modern field docs, and UI showcase.
- Map fields expose provider configuration through the public field API.
- Quality tooling is aligned across PHP, JS, and documentation updates.
Core capabilities
- Fluent field builder through
WpField\Field\Field - 52 supported field types across simple, composite, layout, and WordPress-integrated controls
- Conditional logic with AND/OR relations
- Repeater and flexible content for nested data structures
- Containers for metaboxes, settings pages, taxonomies, and users
- Storage strategies for post meta, term meta, user meta, options, and custom tables
- React/Vanilla UI layer for admin shell, wizard, repeater, and flexible content flows
- Legacy compatibility layer for older integrations and unsupported custom field types
Architecture
WP_Field has two layers:
- Modern API —
WpField\Field\Fieldand classes undersrc/Field/Types/ - Legacy compatibility layer —
WP_Field.phpandvanilla/
Use the modern API for new code. Keep the legacy layer for existing integrations, unsupported custom field types, or the standalone vanilla package.
How the field lifecycle works
- Create a field with
Field::make()or a typed shortcut. - Configure label, description, defaults, options, validation, and field-specific settings.
- Render the field inside a WordPress admin form.
- Save through a container or your own save flow.
- Pass the stored value back into the same field definition to render the saved state.
WordPress dependencies that remain
The modern layer still uses WordPress-provided functionality for these features:
wp.media/ Media Modal —media,image,file,gallery,backgroundwp-color-picker—color,palette, and color-based composite controlswp.editor— classic editor fieldswp.codeEditor— code editor fieldsjquery-ui-sortable—sortable,sorter,repeater,flexible_contentjquery-ui-datepicker— date and time UI where WordPress-native pickers are expecteddashiconsor another icon library —icon- provider-specific assets when a map provider requires them
Do not unload these assets on screens that render interactive fields unless you replace them with an equivalent setup.
Installation
Via Composer
composer require rwsite/wp-field
Manual installation
- Copy the package into
wp-content/plugins/wp-field-plugin - Run
composer install --no-dev - Activate the plugin in WordPress admin
Build frontend assets
npm install npm run build
Standalone vanilla build
You can export the legacy runtime as a separate WordPress plugin that does not depend on the original woo2iiko plugin directory.
npm run build:standalone
The build script:
- copies the minimal runtime from
vanilla/ - includes legacy assets and translations
- generates a dedicated plugin bootstrap
- writes the plugin to
dist/wp-field-vanilla/ - creates
dist/wp-field-vanilla.zip
The standalone package includes only the runtime required for the vanilla version:
wp-field-vanilla.phpREADME.txtvanilla/bootstrap.phpvanilla/WP_Field.phpvanilla/assets/css/wp-field.cssvanilla/assets/js/wp-field.jslang/wp-field.potlang/wp-field-ru_RU.polang/wp-field-ru_RU.molang/wp-field-ru_RU.l10n.php
It does not include the modern React layer, demo pages, tests, source SCSS, or repository-only development files.
Quick Start
Modern API (v4.0)
use WpField\Container\MetaboxContainer; use WpField\Field\Field; $field = Field::text('email') ->label('Email Address') ->placeholder('user@example.com') ->required(); echo $field->render(); $metabox = new MetaboxContainer('product_details', [ 'title' => 'Product Details', 'post_types' => ['product'], ]); $metabox->addField( Field::text('sku')->label('SKU')->required() ); $metabox->addField( Field::text('price')->label('Price')->required() ); $metabox->register();
Repeater field
Field::repeater('team_members') ->label('Team Members') ->fields([ Field::text('name')->label('Name')->required(), Field::text('position')->label('Position'), Field::make('email', 'email')->label('Email'), ]) ->min(1) ->max(10) ->buttonLabel('Add Member') ->layout('table');
Flexible content field
Field::flexibleContent('page_sections') ->label('Page Sections') ->addLayout('text_block', 'Text Block', [ Field::text('heading')->label('Heading'), Field::make('textarea', 'content')->label('Content'), ]) ->addLayout('image_block', 'Image Block', [ Field::make('image', 'image')->label('Image'), Field::text('caption')->label('Caption'), ]) ->min(1) ->buttonLabel('Add Section');
Map field provider contract
Field::make('map', 'location') ->label('Location') ->provider('google') ->apiKey('your-api-key') ->zoom(12) ->center(['lat' => 55.7558, 'lng' => 37.6173]);
Containers and storage
Containers integrate fields with WordPress screens and persistence:
MetaboxContainer— post meta and metaboxesSettingsContainer— settings pages and optionsTaxonomyContainer— taxonomy forms and term metaUserContainer— user profile forms and user meta
Storage strategies:
PostMetaStorageTermMetaStorageUserMetaStorageOptionStorageCustomTableStorage
Field Types
Basic (9)
textpasswordemailurltelnumberrangehiddentextarea
Choice (5)
selectmultiselectradiocheckboxcheckbox_group
WordPress-integrated (9)
editormediaimagefilegallerycolordatetimedatetime-local
Composite (2)
grouprepeater
Simple UI (9)
switcherspinnerbutton_setsliderheadingsubheadingnoticecontentfieldset
Medium complexity (10)
accordiontabbedtypographyspacingdimensionsborderbackgroundlink_colorcolor_groupimage_select
High complexity (8)
code_editoriconmapsortablesorterpalettelinkbackup
Compatibility aliases
date_time→datetime-localdatetime→datetime-localimagepicker→image_picker
Demo Pages
In WordPress admin debug mode, the plugin registers demo pages under Tools:
- WP_Field Examples — legacy/classic API reference page
- WP_Field Components — modern field documentation and live examples
- Admin Shell UI Demo — UI showcase for the shell and wizard layer
Routes:
/wp-admin/tools.php?page=wp-field-examples/wp-admin/tools.php?page=wp-field-components/wp-admin/tools.php?page=wp-field-ui-demo
Development
Frontend
npm run dev npm run lint npm run build
npm run dev starts Vite and watches vanilla/assets/scss/wp-field-examples-vanilla.scss to rebuild vanilla/assets/css/wp-field-examples-vanilla.css.
Edit SCSS sources under vanilla/assets/scss/. Do not edit generated CSS manually.
PHP and repository checks
composer test
composer analyse
composer lint:check
./.agents/skills/qa-gate/scripts/verify.sh
Limitations
- The modern layer is not fully standalone in the browser.
- Removing WordPress admin runtime or required UI assets breaks interactive fields.
- Some interactions are intended only for backend screens.
- Demo pages are reference implementations, not a replacement for the normal plugin bootstrap in production.
Changelog
See CHANGELOG.md for version history.
License
GPL v2 or later
Author
Aleksei Tikhomirov (https://rwsite.ru)
rwsite/wp-field 适用场景与选型建议
rwsite/wp-field 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 5, 最近一次更新时间为 2025 年 12 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「fluent」 「wordpress」 「Forms」 「laravel」 「Settings」 「react」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rwsite/wp-field 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rwsite/wp-field 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rwsite/wp-field 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
ConfirmationField is a form field for Atk14 applications. It's like the BooleanField (checkbox) but the ConfirmationField must be ticked.
Field for number with restricted count of digits and decimal places
Presentation and Formatting helper with nice fluent interface.
Traits gathering fluent syntax common methods
A modern, fluent HTTP client. Forked from Mashape, reimagined by Nidux, and open-sourced for the PHP community.
HTML and form generation
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 25
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2025-12-06