See exactly how your user base actually grew
Registration Date adds a sortable column to the Users list showing when each account was created — a field WordPress has always stored on every user, just never surfaced anywhere in the admin.
- Reads WordPress's own native user_registered field, no custom tracking needed.
- Sortable using WordPress's native registration ordering, no extra query logic.
- Correctly converted to the site's own timezone and date format.
- Integrates directly with Custom Content Columns.
What does Registration Date do?
When the registration_date module is active, TOWP_Registration_Date adds a sortable "Registration Date" column to the Users list in wp-admin. Unlike a module that has to build its own tracking, this one reads a field WordPress has always stored on every user account, user_registered, converts it from GMT to the site's own timezone, and formats it using the site's configured date and time settings. Since sorting the column uses registered, WordPress's own native ordering key for user queries, no custom sorting logic is needed at all.
The registration date is stored and then never surfaced anywhere
Since the default Users list never displays this field, the information sits in the database without ever becoming useful.
An account list gives no sense of how it was actually built up
WordPress records exactly when every user registered, but nothing in the default Users list ever displays it, leaving no visible history of how the user base actually grew.
A cluster of same-minute registrations is easy to miss without it
Several accounts created within the same minute is a common sign of automated sign-ups, but there's no way to notice that pattern without seeing the dates side by side.
The date WordPress already had, finally visible and sortable
The module surfaces a field WordPress has tracked all along, using its own native sorting mechanism rather than building anything new.
Reusing a field WordPress already stores
No custom tracking is needed; the column reads the same user_registered value WordPress has recorded on every account since it was created.
Sorted using WordPress's own native ordering
The column sorts through WordPress's own registered ordering key, the same one WP_Users_List_Table already understands, with no extra query logic required.
A cluster of same-minute signups stands out immediately
Sorting by this column groups accounts created close together, making an automated registration burst easy to spot at a glance.
A native field, finally put to use
Every capability below is present in the supplied PHP class and its settings registration.
No custom tracking mechanism needed
The column displays user_registered, a value WordPress has stored on every account since it was created, rather than building any new tracking of its own.
registered, understood out of the box
The column maps directly to WordPress's own native registered ordering key, which WP_Users_List_Table already supports without any custom pre_get_users handler.
Converted from GMT before display
The stored value gets converted from GMT to the site's own timezone via get_date_from_gmt() before being formatted, rather than displaying a raw UTC timestamp.
No hardcoded date format
The displayed date and time use whatever format is already configured in Settings, Reading, matching the rest of the admin.
"Unknown" instead of a broken date
A user record with a missing or zero-value registration date shows a clearly labeled "Unknown" rather than an invalid or nonsensical date.
Same pattern as Last Login
The column injects itself into Custom Content Columns' default active columns, checks for CCC's own output before rendering, and cleans up its saved reference automatically if disabled.
Where seeing registration dates helps most
The module supports any site where account history has never been visible before.
Spotting automated or spam registrations
Sort by registration date to find a cluster of accounts created within the same minute, a common signature of a bot signing up repeatedly.
Understanding how a user base actually grew
See the burst of signups around a launch, the steady trickle afterward, and any unusual spikes in between.
General account auditing on a site with many users
Use registration date alongside Last Login to build a fuller picture of an account's entire history on the site.
A history that was always there, now actually visible
The module combines a genuinely missing piece of visibility with zero added tracking or query overhead.
Nothing added, everything reused
The verified implementation stays lightweight since it builds on data and mechanisms WordPress already provides.
One already-loaded field, formatted on render
Displaying the column reads a value already present on the user object; no additional database query is needed to show it.
Sorting uses WordPress's existing mechanism
Since the sort key is native to WP_User_Query, no custom query modification runs when the column gets sorted.
No effect anywhere outside the Users list
The column and its formatting logic are scoped entirely to wp-admin's Users screen; nothing runs anywhere else on the site.
Visibility for review, no automatic action taken
The module surfaces a pattern worth investigating, without acting on any account itself.
Surfaces a pattern worth investigating, doesn't act on it
A cluster of same-minute registrations is a signal for a human to look into, not something this module flags, blocks, or removes automatically.
Read-only with respect to accounts themselves
The module only displays a date that already exists; it doesn't create, modify, or delete any user record.
Visible only inside wp-admin's Users screen
The registration date appears only where an administrator with access to manage users would already be looking.
Configuration requires the same access as any other setting
Enabling the module happens through the standard TheOneWP settings screen, available only to an administrator.
Built directly around WordPress's own user registration data
The supplied code integrates through APIs present in WordPress core and TheOneWP's own modules; this page makes no compatibility claim beyond the verified implementation.
user_registered
The WordPress core field, stored on every user object since registration, that this module reads directly rather than tracking separately.
registered orderby key
The native key WP_User_Query and WP_Users_List_Table already use to sort users by registration date, reused directly by this column.
towp_ccc_default_active_users_columns filter
The same TheOneWP filter Last Login uses to register itself as a default active column within Custom Content Columns, if that module is active.
TheOneWP versus common alternatives
Compare the verified Registration Date implementation with a typical custom-tracking approach.
| Capability | TheOneWP Registration Date | Other common solutions |
|---|---|---|
| Tracking mechanism | Reads a field WordPress already stores natively | Some approaches add unnecessary custom tracking for data WordPress already has |
| Sorting | Uses WordPress's own native registered key, no extra query | Some approaches implement custom sorting logic where none is needed |
| Timezone handling | Converted from GMT to the site's own timezone | A raw or unconverted timestamp can display incorrectly across timezones |
| Malformed record handling | Shows a clear "Unknown" state instead of a broken date | Some approaches fail silently or display an invalid date |
| Custom Content Columns integration | Appears as a default active column automatically | Usually requires manual configuration to surface in a column manager |
See your account history in four steps
Since there's nothing to configure beyond enabling it, using the column is the real workflow here.
Enable Registration Date
Activate the module from the TheOneWP Login settings tab; there's nothing further to configure.
Open the Users list
Visit wp-admin's Users screen and find the new Registration Date column.
Sort by Registration Date
Click the column header to see accounts ordered by when they were created.
Look for clusters and patterns
Scan for groups of accounts registered close together, or review the overall growth pattern over time.
Use it for growth insight, not just anomaly hunting
The column is equally useful for understanding organic patterns as it is for spotting unusual ones.
Check for same-minute clusters periodically
A tight group of registrations at the same timestamp is worth a quick look, especially on a site open to public sign-ups.
Pair it with Last Login for a fuller account picture
Registration date shows when an account was created; Last Login shows whether it's still actually being used.
Use it to understand growth, not just to police it
The column is equally useful for seeing genuine organic growth patterns as it is for spotting anomalies.
Pair it with Custom Content Columns for a tailored Users list
Since the module integrates directly, use CCC to decide exactly where the column sits alongside others.
Avoid a couple of details that are easy to misread
A few behaviors are worth understanding correctly before drawing conclusions from the column.
Assuming a same-minute cluster is always malicious
A launch day, an import, or a promotional push can all produce a legitimate cluster of registrations; investigate before assuming automation.
Expecting this to track anything beyond the original registration
The column shows only when an account was created, not any activity since; Last Login covers that separately.
Not accounting for timezone when comparing dates manually
The displayed date is already converted to the site's timezone, so comparing it against a raw database value without the same conversion will look inconsistent.
Registration Date FAQ
These answers come directly from the verified class and its settings registration.
What does Registration Date do?
It adds a sortable Registration Date column to the Users list, showing when each account was created.
Does WordPress track this already?
Yes. WordPress stores the registration date on every user by default; this module simply makes it visible and sortable in the admin.
Can I sort the Users list by Registration Date?
Yes. The column uses WordPress's own native registered ordering key, requiring no custom sorting logic.
Does this help spot spam or automated registrations?
It can. A cluster of accounts registered within the same minute is a common sign of automated sign-ups, and sorting by this column makes that pattern visible.
Is the date shown in the correct timezone?
Yes. The stored value is converted from GMT to the site's own configured timezone before being displayed.
What happens for a user with a missing or invalid registration date?
The column shows "Unknown" rather than an incorrect or broken date.
Does this work with Custom Content Columns?
Yes. The column integrates directly and appears among Custom Content Columns' default active columns automatically.
Is this the same as Last Login?
No. Registration Date shows when an account was created; Last Login shows when it was most recently used, a separate module.
Does this affect anything outside the Users list?
No. The module's column is scoped entirely to the wp-admin Users screen.
Who can see the Registration Date column?
Anyone with access to the Users screen in wp-admin, the same access already required to manage users.
Stop guessing how your user base grew.See registration dates, sortable, at a glance.
Use Registration Date to surface the account creation date WordPress already stores, sorted natively, with zero custom tracking needed.

