Skip to main content

Meta Box

PropertyValue
descriptionWordPress admin interface panel used to display fields or controls on edit and management screens.
tagsref
rating

A meta box is a boxed interface panel in the WordPress admin used to display fields, settings, or controls on edit and management screens.

In native WordPress terminology, meta boxes are the UI containers that hold editable inputs. They are closely related to custom fields and other admin-side configuration panels.

What it does

A meta box provides a place in the backend where users can view or edit additional information.

It is commonly used for:

  • Custom field inputs
  • SEO controls
  • Layout and display settings
  • Plugin-specific content settings
  • Supplementary publishing or editorial tools

Core concepts

Container vs field

A meta box is the container UI.

A custom field is an individual data point inside that interface.

Native WordPress feature

WordPress has native APIs such as add_meta_box() and do_meta_boxes() for registering and rendering meta boxes.

Relationship to field groups

In tools such as ACF, a field group plays a similar role as a structured admin container for custom fields.

Common use cases

  • Adding structured input panels to post edit screens
  • Grouping related custom controls in the admin
  • Supporting plugin-specific configuration for content items
  • Exposing extra data entry points for posts and custom post types
  • Organizing custom input panels beyond the main editor content

Practical notes

  • In WordPress discussions, "meta box" usually refers to the admin UI panel, not the stored data itself.
  • The stored values behind a meta box are often post meta, term meta, or user meta.
  • The product name Meta Box AIO is related, but it is a specific plugin bundle rather than the generic concept.
  • Some modern workflows use block-editor or custom-plugin UIs instead of traditional meta boxes, but the concept is still common.

Sources Used

Frequently Asked Questions

Is a meta box the same as a custom field?

No. A meta box is the interface container, while a custom field is one piece of data that might be edited inside it.

Is a field group the same as a meta box?

Not exactly, but they are closely related concepts. In many WordPress workflows, a field group fills a similar admin UI role.

Is Meta Box AIO the same thing as a meta box?

No. Meta Box AIO is a specific WordPress plugin bundle. A meta box is the broader WordPress interface concept.