Skip to content

Instantly share code, notes, and snippets.

@thagxt
Created September 7, 2014 12:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thagxt/71c39b6c60139b2b4ebe to your computer and use it in GitHub Desktop.
Save thagxt/71c39b6c60139b2b4ebe to your computer and use it in GitHub Desktop.
WordPress get user registration date on author page
<?php
$user_id = get_the_author_meta('ID');
echo date("D M Y", strtotime(get_userdata($user_id)->user_registered));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment