Title: Plinth Custom Fields
Author: Shobhit Verma
Published: <strong>2026 年 7 月 10 日</strong>
Last modified: 2026 年 7 月 10 日

---

搜尋外掛

![](https://ps.w.org/plinth-custom-fields/assets/banner-772x250.png?rev=3602204)

![](https://ps.w.org/plinth-custom-fields/assets/icon-256x256.png?rev=3602204)

# Plinth Custom Fields

 由 [Shobhit Verma](https://profiles.wordpress.org/shobhitverma/) 開發

[下載](https://downloads.wordpress.org/plugin/plinth-custom-fields.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/plinth-custom-fields/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/plinth-custom-fields/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/plinth-custom-fields/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/plinth-custom-fields/#developers)

 [技術支援](https://wordpress.org/support/plugin/plinth-custom-fields/)

## 外掛說明

Plinth Custom Fields lets you build custom field groups and attach them to post 
types, page templates, specific pages, or post statuses — without depending on any
other plugin.

**Key features:**

 * 12 field types: Text, Textarea, Number, Email, URL, Image, Select, Radio, Checkbox,
   True/False, WYSIWYG Editor, and Repeater
 * Repeater fields with drag-to-reorder rows and nested sub-fields
 * Location rules with AND/OR logic — show fields only where you need them
 * Import and export field groups as JSON, so you can move configurations between
   sites
 * Template functions for theme developers: `plinth_get_field()`, `plinth_the_field()`,`
   plinth_get_image()`, `plinth_get_rows()`, `plinth_have_rows()`, `plinth_the_row()`,`
   plinth_get_sub_field()`, `plinth_the_sub_field()`
 * All data stored in standard `wp_postmeta`, prefixed with `_plinth_` so it never
   collides with other plugins
 * Zero external dependencies — works entirely on top of WordPress core

#### For Theme Developers

Once a field group is created and assigned to a location, pull the values into any
template file:

    ```
    <?php
    $title = plinth_get_field( 'hero_title' );
    $image = plinth_get_image( 'hero_image', null, 'large' );

    if ( plinth_have_rows( 'team_members' ) ) :
        while ( plinth_rows_remaining() ) : plinth_the_row(); ?>
            <h3><?php plinth_the_sub_field( 'name' ); ?></h3>
        <?php endwhile;
    endif;
    ?>
    ```

## 螢幕擷圖

[⌊Field Groups list page⌉⌊Field Groups list page⌉[

Field Groups list page

[⌊Field group editor — adding fields and location rules⌉⌊Field group editor — adding
fields and location rules⌉[

Field group editor — adding fields and location rules

[⌊Repeater field on the post edit screen⌉⌊Repeater field on the post edit screen⌉[

Repeater field on the post edit screen

## 安裝方式

 1. Upload the `plinth-custom-fields` folder to the `/wp-content/plugins/` directory,
    or install directly through the WordPress Plugins screen.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress.
 3. Go to **Plinth Custom Fields  Add New** to create your first field group.
 4. Set Location Rules to choose where the field group should appear.
 5. Edit a matching post or page to see your custom fields in a meta box.

## 常見問題集

### Does this require any other plugin?

No. Plinth Custom Fields is fully self-contained and has zero dependencies on any
other plugin.

### Can I move field groups between sites?

Yes. Go to **Plinth Custom Fields  Import / Export** to export a JSON file of your
field groups, then import that same file on another site.

### How do repeater fields store their data?

Repeater rows are stored as individual `wp_postmeta` rows (a row-count meta key 
plus one meta key per cell), which keeps the data simple to query directly from 
the database if needed.

### Will this conflict with my theme’s existing custom fields?

All meta keys are prefixed with `_plinth_` and the leading underscore keeps them
out of WordPress’s native Custom Fields panel, minimizing collision risk with other
plugins or theme code.

## 使用者評論

這個外掛目前沒有任何使用者評論。

## 參與者及開發者

以下人員參與了開源軟體〈Plinth Custom Fields〉的開發相關工作。

參與者

 *   [ Shobhit Verma ](https://profiles.wordpress.org/shobhitverma/)

[將〈Plinth Custom Fields〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/plinth-custom-fields)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/plinth-custom-fields/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/plinth-custom-fields/)，或透過
[RSS](https://plugins.trac.wordpress.org/log/plinth-custom-fields/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/plinth-custom-fields/)。

## 變更記錄

#### 1.0.0

 * Initial release.
 * 12 field types including Repeater with drag-sort and nested sub-fields.
 * Location rules engine with AND/OR logic.
 * JSON import/export for field groups.
 * Template functions for theme developers.

## 中繼資料

 *  版本 **1.0.0**
 *  最後更新 **4 週前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 5.8 或更新版本 **
 *  已測試相容的 WordPress 版本 **7.0.3**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/plinth-custom-fields/)
 * 標籤:
 * [custom fields](https://tw.wordpress.org/plugins/tags/custom-fields/)[custom post types](https://tw.wordpress.org/plugins/tags/custom-post-types/)
   [field groups](https://tw.wordpress.org/plugins/tags/field-groups/)[meta box](https://tw.wordpress.org/plugins/tags/meta-box/)
   [repeater](https://tw.wordpress.org/plugins/tags/repeater/)
 *  [進階檢視](https://tw.wordpress.org/plugins/plinth-custom-fields/advanced/)

## 評分

這個項目尚無任何評論記錄。

[Your review](https://wordpress.org/support/plugin/plinth-custom-fields/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/plinth-custom-fields/reviews/)

## 參與者

 *   [ Shobhit Verma ](https://profiles.wordpress.org/shobhitverma/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/plinth-custom-fields/)