Retrieve duration since sign up
WordPress doesn’t have a “Duration Since Signup” value so you’ll need to calculate it by finding the difference between the user registration date and the current date. I suggest getting the user above the conditional: function set_mail_html_content_type() { return ‘text/html’; } add_action( ‘user_help_signup’, 10 ,2 ); function user_help_signup( $ID, //DURATION SINCE SIGN UP ) { … Read more