✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount

SleekView for Meta Box Relationships: linked records as joinable tables

Meta Box Relationships stores links between posts, users, and terms in a dedicated mb_relationships table. SleekView reads those rows and renders the related side inline so editors stop opening each record to see what is linked.

♾️ Lifetime License available

SleekView table view for Meta Box Relationships

See related records without opening each one

Meta Box Relationships uses a dedicated mb_relationships table (with from, to, and type columns) to model links between any two WordPress objects. A book-to-author link, a project-to-team-member link, an article-to-related-tag link all live in the same table, distinguished by the type column. That design keeps relationships fast and queryable, but the default WordPress admin shows none of the relationship data on the post list, so editors open each record just to see what is linked.

SleekView reads the mb_relationships table and joins the related side into the column set automatically. A books table can show 'Authors' as a column with related author names rendered inline; an author table can show 'Books' as a count or as a list. Filter by relationship type to find records with no links, records with more than N links, or records linked to a specific other record. Inline edits add or remove relationship rows through Meta Box's own API so cache invalidation and registered hooks still apply.

The same mechanism covers user-to-post, term-to-post, and arbitrary cross-type relationships. Saved views per role mean editors only see the relationships they own, and exports to CSV produce flat join rows ready for spreadsheets or external systems. The relationship table stays authoritative; the admin just finally renders the joined data.

Workflow

From join rows to inline-rendered columns

1

Pick the source side

Select the post type, user role, or taxonomy you want as the primary table. SleekView reads its native columns from wp_posts, wp_users, or wp_terms.
2

Add a relationship column

Choose a relationship type from mb_relationships. SleekView joins the related side and renders titles, counts, or a relationship picker depending on the chosen display mode.
3

Filter and audit

Apply orphan filters, link-count filters, or relationship-type filters. Save the view per role so each team sees only the relationships they own.
4

Edit through Meta Box

Add or remove relationships from the picker. Writes route through Meta Box's API so registered hooks fire and any caching is invalidated correctly.

Sample columns

Books with their authors and related tags

Each row pulls related records from mb_relationships with the related titles or counts shown inline.
Source: mb_relationships + wp_posts + wp_users + wp_terms
Book title Author Related tags Reviews Published Status
Project Hail Mary Andy Weir sci-fi, space 12 Apr 12 Active
Pragmatic Programmer Hunt, Thomas dev, classic 8 Mar 28 Active
Old reference manual 0 Jan 10 Orphaned
A Philosophy of Software Design John Ousterhout dev, design 5 Apr 02 Low reviews

Comparison

Default Meta Box Relationships admin vs SleekView

Default MB Relationships admin

  • Relationships are invisible from the post list in the default admin
  • No filter for orphan records or records with no links
  • Bulk-adding or removing relationships requires custom code
  • The mb_relationships table is queryable but not surfaced anywhere editors look
  • Counting linked records per post means manual queries against mb_relationships

SleekView

  • Render the related side inline as titles or counts
  • Filter by relationship type, orphan status, or link count
  • Inline add or remove links through Meta Box's relationship API
  • Cross-type relationships (post to user, term to post) all supported
  • Export joined rows as flat CSV for external tools

Features

What SleekView gives you for Meta Box Relationships

Related side as a column

A 'Linked authors' column on a books table shows the related author names directly. Click the cell to open a relationship picker for inline edits.

Orphan filter

Find records with zero links of a given type. Catches authors with no books, books with no reviews, or any object missing its expected relationship.

Cross-type relationships

Meta Box Relationships supports post-to-post, post-to-user, post-to-term, and combinations. SleekView renders the related side regardless of object type.

Audience

Who uses SleekView for Meta Box Relationships

Catalog developers

Inspect and edit catalog relationships (books to authors, products to suppliers) from one screen. Saved views per relationship type keep edits scoped.

Editorial leads

Spot orphan content (authors with no books, articles with no related tags) before it hits the front end. Filter by link count and clean up in bulk.

Operations teams

Export joined rows as CSV for external tools (spreadsheets, BI dashboards). The mb_relationships table stays authoritative.

The bigger picture

Why relationship data deserves to be in the admin list

Meta Box Relationships made a clean architectural choice: store links between WordPress objects in a dedicated mb_relationships table with from, to, and type columns rather than smuggling them through serialized postmeta. That design pays off in queryability. Joining books to authors, projects to team members, or articles to related tags is a single indexed query instead of an N-way scan of wp_postmeta.

The cost has always been the admin layer. WordPress's list table machinery does not know about mb_relationships, so the related side stays invisible unless someone writes a custom column. Editors open each record to see what is linked, developers build one-off admin pages for relationship-heavy content models, and orphan records hide in plain sight.

SleekView reads the relationship table the way it was designed to be read. The related side renders inline as a column, filters cover orphan detection and link counts, and inline edits route through Meta Box's API so existing hooks continue to fire. The join rows stay where Meta Box put them, and the admin finally surfaces the relationships those rows were designed to represent.

Questions

Common questions about SleekView for Meta Box Relationships

Yes for read paths, with joins to wp_posts, wp_users, or wp_terms depending on the related side. Write paths go through Meta Box's relationship API so registered hooks still fire and any caching the plugin maintains is invalidated correctly.

 

Yes. Click a relationship column to open a picker, add new links, or remove existing ones. The picker uses the same lookup Meta Box uses on its own forms, so custom validation continues to apply.

 

Meta Box supports reciprocal lookup by querying the relationship from either side. SleekView surfaces both sides, so a books table can show 'Authors' and an authors table can show 'Books' from the same underlying rows.

 

Yes. Add and remove operations route through the Meta Box relationship API, so mb_relationships_added, mb_relationships_deleted, and any custom hooks fire as they do from a Meta Box form.

 

Yes. A built-in filter shows records with zero links, exactly one, more than N, or fewer than N. Useful for spotting orphans, finding the most-linked records, or auditing minimum-link requirements.

 

The mb_relationships table has indexes on from, to, and type. SleekView uses those indexes for join queries and paginates by default, so even tables with hundreds of thousands of relationship rows stay responsive.

 

Yes. Export to CSV produces one row per relationship pair with both sides' fields joined in. The export respects active filters and column order, ready for spreadsheets or BI tools.

 

Yes. Meta Box Relationships supports post-to-user, post-to-term, and post-to-post links, all in the same table. SleekView joins to wp_users or wp_terms when the related side requires it.

 

Pricing

More than 1000+
happy customers

Explore our flexible licensing options tailored to your needs. Upgrade your license anytime to access more features, or opt for a lifetime license for ongoing value, including lifetime updates and lifetime support. Our hassle-free upgrade process ensures that our platform can grow with you, starting from whichever plan you choose.

Starter

€79

EUR

per year

  • 3 websites
  • 1 year of updates
  • 1 year of support

Pro

€149

EUR

per year

  • Unlimited websites
  • 1 year of updates
  • 1 year of support

Lifetime ♾️

Most popular

€249

EUR

once

  • Unlimited websites
  • Lifetime updates
  • Lifetime support

...or get the Bundle Deal
and save €250 🎁

The Bundle (unlimited sites)

Pay once, own it forever

Elevate your WordPress site with our exclusive plugin bundle that includes all of our premium plugins in one package. Enjoy lifetime updates and lifetime support. Save significantly compared to buying plugins individually.

What’s included

  • SleekAI

  • SleekByte

  • SleekMotion

  • SleekPixel

  • SleekRank

  • SleekView