

<strong>Field Group Editor — fields overview.</strong> Six fields in the "Article Details" group, each row showing a colour-coded type icon, field name slug, and category badge (Text, Textarea, Number, True/False, Image, Post Object). Drag handles let you reorder by dragging. Action icons on the right duplicate, expand, or delete a field.
Fieldom gives agencies and developers a community-governed, feature-rich custom fields plugin for WordPress.
Every feature is built and maintained in the open. No freemium gates, no SaaS backend, no phone-home. Just a solid custom-fields plugin that runs entirely inside WordPress.
wp_postmeta using established key conventions, compatible with any plugin that reads WordPress post meta.fieldforge_get(), fieldforge_the(), fieldforge_have_rows(), fieldforge_the_row(), fieldforge_sub_field(), fieldforge_the_sub_field(), fieldforge_update_field(), fieldforge_get_option(), fieldforge_update_option().In your theme templates:
<?php echo esc_html( fieldforge_get( 'subtitle' ) ); ?>
Or simply:
<?php fieldforge_the( 'subtitle' ); ?>
<?php while ( fieldforge_have_rows( 'team_members' ) ) : fieldforge_the_row(); ?>
<h3><?php fieldforge_the_sub_field( 'name' ); ?></h3>
<p><?php fieldforge_the_sub_field( 'role' ); ?></p>
<?php endwhile; ?>
Go to Fieldom Import / Export, paste your field group JSON, and click Import. All supported field types and location rules are mapped automatically.
See docs/json-import.md in the plugin folder for the full import guide.