✨ 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 Facebook Login: linked accounts as tables

Facebook Login plugins persist the Facebook user identifier in wp_usermeta under keys like facebook_id or fb_user_id. SleekView pivots wp_users into a Facebook-linked-user grid with last-login and link timestamps per row.

♾️ Lifetime License available

SleekView table view for Facebook Login

Facebook-linked users as a queryable table

Facebook Login is the category of single-provider WordPress plugins that wrap Facebook's OAuth flow, log the user in, and persist the link as a row in wp_usermeta (typical keys: facebook_id, fb_user_id, _facebook_login_uid). The default WordPress users screen does not surface that meta key, so admins cannot tell at a glance which accounts are Facebook-linked and which are not.

SleekView reads wp_users and joins the Facebook-link meta key, producing one row per user with columns for the Facebook identifier, the link timestamp, and the last-login date. Filters like 'Facebook-linked users only' or 'users with a Facebook ID but no recent login' become first-class chips, useful before deprecation work or after Facebook permission changes invalidate sessions.

Edits route through the plugin's documented unlink path when available, and fall back to direct meta edits with an explicit admin override. The view is an operations and compliance layer alongside the plugin's own admin, not a replacement for the OAuth connect flow.

Workflow

From hidden usermeta to a Facebook-linked grid

1

Point at the meta key

SleekView asks for the wp_usermeta key your Facebook Login plugin writes (commonly facebook_id or fb_user_id) and builds the pivot off that single join.
2

Compose columns

Pick user, email, Facebook identifier, link timestamp, last login. Add the Facebook display name if your plugin mirrors it; otherwise stick to the identifier.
3

Scope per role

Identity admins get write access to the unlink action; support gets read-only. Capability checks reuse WordPress's list_users and edit_users directly.
4

Audit, unlink, export

Filter to dormant Facebook-only users, bulk-unlink through the plugin's documented hook, and export the remaining set to CSV for the next DPO review.

Sample columns

A typical Facebook-linked users view

Joins wp_users to the Facebook-link wp_usermeta row and surfaces identifier, link date, and last login.
Source: wp_users + wp_usermeta (facebook_id, fb_user_id, _facebook_login_uid keys)
User Email Facebook ID Linked Last login Status
alex_studio alex@studio.co fb_4421987 Apr 12 Apr 24 Active
ria_design ria@design.io fb_8830211 Feb 20 Apr 22 Active
tom_hello tom@hello.dev fb_1108776 Oct 18 Feb 04 Stale
mia_brew mia@brew.coop fb_2204109 Aug 03 Aug 03 Orphan

Comparison

Default Facebook Login admin vs SleekView

Default Facebook Login admin

  • Linked Facebook IDs live in wp_usermeta with no admin column
  • No filter for Facebook-linked users in the core wp-admin/users.php screen
  • Dormant Facebook-only accounts surface only via raw SQL
  • No bulk-unlink option for accounts that lost their Facebook session
  • No exportable list of Facebook IDs for compliance reviews

SleekView

  • Pivot wp_users with the Facebook-link wp_usermeta row as a first-class column
  • Filter to Facebook-linked only users in one click
  • Spot dormant single-provider accounts using a saved last-login filter
  • Bulk-unlink through the plugin's documented hook path
  • Export the Facebook-linked map to CSV for DPO and security reviews

Features

What SleekView gives you for Facebook Login

Facebook column on the user grid

The Facebook identifier and link timestamp become first-class columns on the user list, with hover detail for the raw wp_usermeta row source.

Single-provider audit

Filter to users linked only to Facebook before sunsetting the connector or after a major Facebook permission change. The chip combination answers the operational question in one screen.

Safe inline unlink

Remove a Facebook link inline and the unlink routes through the plugin's hook path so any downstream listeners (analytics, audit logs) fire as expected.

Audience

Who uses SleekView for Facebook Login

Identity admins

Plan the next Facebook scope change with full visibility. The pivot shows exactly how many active users would lose their login path if the connector were removed.

Compliance leads

Export the Facebook-linked map for DPO reviews and security questionnaires. Identifier, link date, and last-login are the columns the privacy team asks for in writing.

Support agents

Look up a stuck user by email and confirm whether they ever linked a Facebook ID before suggesting an alternative login path. The lookup is one filter.

The bigger picture

Single-provider login data hides in plain sight

Single-provider Facebook Login plugins are the operational equivalent of a black box: they work fine until Facebook changes a scope, and then there is no admin surface to ask 'how many of my users only ever logged in with Facebook'. The data is right there in wp_usermeta but the default WordPress users screen has no notion of a Facebook column, so the question stays unanswered until a permission change converts it into a support fire drill. SleekView lifts the meta key into a first-class column and the operational picture sharpens immediately.

Identity admins can plan deprecations. Compliance teams can produce exports for the DPO. Support agents can confirm whether a stuck user even has a Facebook link before suggesting a fix.

The data is not new; the view is. That is the entire point of treating wp_usermeta as a real schema rather than a serialized closet.

Questions

Common questions about SleekView for Facebook Login

Yes. The pivot is driven by the wp_usermeta key, not by a specific plugin. As long as the connector writes a stable key (commonly facebook_id, fb_user_id, or _facebook_login_uid) the grid surfaces it as a column.

 

Facebook does not normally rotate user IDs but it does deprecate app-scoped identifiers when an app changes. SleekView surfaces the stored ID as-is and an inline edit can update it after a documented rotation; the row carries a last-modified column so the change is auditable.

 

No. New links require the OAuth round-trip with Facebook, which only the connector plugin can initiate. SleekView supports surface, audit, and unlink; linking still happens through the user-facing OAuth flow.

 

Facebook treats the app-scoped user ID as identifying data, so SleekView treats it the same way: visible in the admin grid to authorised roles, excluded from CSV exports unless an admin explicitly enables the column for export.

 

The join is a single indexed lookup on wp_usermeta.meta_key per provider key, which performs well even at hundreds of thousands of users. SleekView paginates server-side so the grid stays responsive.

 

If the plugin mirrors the Facebook display name into a separate usermeta key, SleekView exposes it as an optional column. If only the identifier is stored, the grid surfaces the identifier and links out to the user's WordPress profile for the display name.

 

SleekView lets you point the grid at any meta key. If your Facebook Login plugin uses fb_uid instead of facebook_id, you change the key in the view configuration and the pivot updates without code changes.

 

No. SleekView honors WordPress capabilities like list_users and edit_users. Roles without those caps cannot see or edit the grid; viewing the Facebook identifier requires the same capability as viewing the WordPress profile.

 

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