Add Custom Columns

Add ACF, Meta Box, and Post Meta fields as table columns and edit them inline

RightPlace can pull custom field data from three sources and display them as editable columns in the Posts table. This means you can view and edit ACF fields, Meta Box fields, and raw post meta without ever opening wp-admin.


Before you start


Understanding the three sources

SourceWhen to use
Advanced Custom Fields ACFYou use ACF to define structured field groups
Meta Box MBYou use Meta Box to define structured field groups
Post Meta MetaYou want to access raw wp_postmeta keys (from any plugin, theme, or custom code)

All three work the same way in the Posts table: add as a column, edit inline, filter, and sort.


Step 1: Open the field panel

In the Posts tab, look at the left sidebar. At the bottom you will see buttons for each available source:

  • ACF (if the ACF plugin is active)
  • Meta Box (if the Meta Box plugin is active)
  • Post Meta (always available)

Click the one you want to use.

Posts tab left sidebar showing Post Meta, ACF Fields, Meta Box, and Taxonomies buttons with colored badges


Step 2: Browse field groups (ACF)

The ACF panel shows all your field groups with their fields nested inside. Each field displays:

  • Field label and name
  • Field type (Text, Textarea, Number, Email, URL, Select, Color, Date, Taxonomy, etc.)
  • A + button to add it as a table column

Click + on any field to add it to the table. The column appears at the right end of the table with a green ACF badge in the header.

ACF Fields panel showing field groups with typed fields and a + button to add as column


Step 3: Browse field groups (Meta Box)

The Meta Box panel works the same way:

  • Browse field groups with typed fields
  • Code-defined groups appear as read-only
  • Click + to add any field as a column
  • Columns show a purple MB badge

Meta Box panel showing field groups with Date, DateTime, Text, and other field types


Step 4: Browse raw post meta (Post Meta)

The Post Meta panel lists all wp_postmeta keys registered on your site. This includes:

  • Fields from any plugin (Yoast SEO, WooCommerce, etc.)
  • Theme-specific fields
  • Custom fields added via code

Use the search bar to find specific keys. Click + to add as a column. These columns show an amber Meta badge.


Step 5: Edit fields inline

Once a custom field column is visible in the table, click any cell to edit it. The editor adapts to the field type:

  • Text / Textarea: Inline text input
  • Number: Numeric input
  • Select / Radio: Dropdown picker
  • Date / DateTime: Date picker
  • Color: Color picker
  • Boolean / True-False: Toggle switch
  • Taxonomy: Searchable multi-select with checkboxes
  • URL / Email: Text input with validation

Changes are saved directly to WordPress via the API.

Custom field column added to the Posts table with inline editing


Step 6: Save as a view

Before adding custom field columns, create a dedicated view first so your Default view stays unchanged:

  1. Click the + button next to the view tabs at the bottom of the table
  2. Name the view (e.g. “SEO Fields”, “Product Specs”, “Event Dates”)
  3. Now add your custom field columns, arrange them, and set filters
  4. The view saves your column configuration automatically

This way each view has its own set of columns. Your Default view keeps only the standard columns, while custom field columns live in their own dedicated views.

View tabs showing Default and SEO Fields views with + button to create new views

See Create Filtered Views for more on creating and managing views.


Example: Event management

If you have posts with ACF event fields:

  1. Open the ACF panel
  2. Find your “Event Details” field group
  3. Click + on event_date, event_location, event_price to add them as columns
  4. The table now shows event data inline with ACF badges in the column headers

ACF Event Details field group with event_date, event_location, event_price columns added to the table

  1. Filter by event_location (e.g. type “Toronto”) to see events in a specific city
  2. Save as an “Event-Toronto” view to keep this filtered layout for quick access

Posts table filtered by event_location Toronto with Event-Toronto view tab

You can also add new fields to the group without leaving RightPlace:

  1. Click the gear icon on the “Event Details” group to open Group Details

ACF Fields panel with gear icon on Event Details group

  1. The Group Details panel shows the group settings and existing fields. Click + Add Field

Group Details panel showing Event Details settings with 3 fields and + Add Field button

  1. Fill in the new field form:
    • Field Type: Select
    • Field Label: Event Status
    • Field Name: event_status (auto-generated)
    • Choices: upcoming : Upcoming, sold_out : Sold Out, cancelled : Cancelled, postponed : Postponed
    • Click Add Field

New Field form with Select type, Event Status label, and four choices

  1. The field is created. The Group Details panel now shows 4 fields, and a confirmation toast appears: “Added Event Status”

Group Details showing 4 fields with Field created toast notification

  1. Go back to the ACF Fields list. The “Event Details” group now shows Event Status with a Select badge. Click + to add it as a column

ACF Fields panel showing Event Status field with Select badge and + button

  1. Click any cell in the Event Status column to open the dropdown picker. Select from the choices you defined: Upcoming, Sold Out, Cancelled, Postponed

Event Status column with dropdown picker showing Upcoming, Sold Out, Cancelled, Postponed choices

  1. The table now shows all event data with the new Event Status column filled in. Save the view to keep this layout

Final Posts table with Event Date, Event Status, Event Price columns and status values filled in


Editing field settings (ACF)

For ACF fields, you can edit field definitions without leaving RightPlace:

  1. Open the ACF Fields panel from the sidebar

ACF Fields panel showing field groups with gear icons

  1. Click the gear icon on a field group to open Group Details. Then click the pencil icon on the field you want to edit

Group Details panel with pencil icon on Event Status field

  1. The Edit Field panel lets you change: label, name, instructions, required, default value, choices, and other type-specific settings. Click Save Changes when done

Edit Field panel showing Event Status Select field with editable settings

Changes are saved directly to the ACF field group on your WordPress site. This is useful for quick adjustments without navigating to wp-admin.


Tips

  • Start with a view: Create a dedicated view first, then add only the 3-5 fields you need for your current task as columns. This keeps your Default view clean.
  • Mix sources: You can combine ACF, Meta Box, and Post Meta columns in the same view. Each column shows its source badge so you can tell them apart.
  • Custom taxonomies: For taxonomy-type fields, use the Taxonomies button instead. Custom taxonomies get their own searchable dropdown editor in the table.

Next steps