I have a need to add the date that they agreed to the terms of use to a custom page. Is there any way that I can do that?
I have a need to add the date that they agreed to the terms of use to a custom page. Is there any way that I can do that?
The date and initials are stored in the WP user meta table. You can retrieve anything in this table with:
global $user_ID;
get_user_meta($user_ID, 'terms_and_conditions');
The initials are stored as 'tou_initials'.
But is it the date that they agreed to the terms of use on a page?
You must log in to post.