Display Year and Month from custom field + Age Calculator

I have a custom field "DOB" on my custom post type which is in [Ymd] format. I want to compare that date of birth to current time and want to show "You are # years # months."

I am able to calculate Years only but it is not accurate. Help me.

Topic date functions wp-query php date-time Wordpress

Category Web


You create two date objects and compare with the diff() methode.

$from = new DateTime( '1970-01-01' );
$to = new DateTime('today');
$years = $from->diff($to)->y;
$months =  $from->diff($to)->m;

echo $years . ' years and ' . $months . ' months.';

=> 46 years and 1 months.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.