You can condition against the registerDate column in the _users table for that. You'll need to use the "u" table prefix (e.g. u.`registerDate`). See MYSQL documentation below regarding date functions.
dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html
How long they are considered new is entirely up to you. Example as follows compares registerDate to todays date minus 1 month.
Code:
u.`registerDate` >= DATE_SUB( NOW(), INTERVAL 1 MONTH )
That basically means "Has the user registered within 1 month from today? If so lets display them otherwise they are not new.".