Il parait que l’on change d’âge tous les ans ?
Parce que je n’ai pas envie de faire update tous les ans de ma page de présentation et que l’informatique ça sert à être faignant 🙂 voici un méta-mot pour NPDS qui te permettra d’afficher l’âge par rapport à la date de naissance passée en paramètre.

Le code :
[fusion_builder_container hundred_percent= »yes » overflow= »visible »][fusion_builder_row][fusion_builder_column type= »1_1″ background_position= »left top » background_color= » » border_size= » » border_color= » » border_style= »solid » spacing= »yes » background_image= » » background_repeat= »no-repeat » padding= » » margin_top= »0px » margin_bottom= »0px » class= » » id= » » animation_type= » » animation_speed= »0.3″ animation_direction= »left » hide_on_mobile= »no » center_content= »no » min_height= »none »][php]
function MM_trouveMonAge($date){
$date = arg_filter($date);
$age = date(‘Y’) – date(‘Y’, strtotime($date));
if (date(‘md’) < date(‘md’, strtotime($date))) {
return $age – 1;
}
return $age;
}
[/php]

Utilisation :
[/fusion_builder_column][fusion_builder_column type= »1_1″ background_position= »left top » background_color= » » border_size= » » border_color= » » border_style= »solid » spacing= »yes » background_image= » » background_repeat= »no-repeat » padding= » » margin_top= »0px » margin_bottom= »0px » class= » » id= » » animation_type= » » animation_speed= »0.3″ animation_direction= »left » hide_on_mobile= »no » center_content= »no » min_height= »none »]

npdsTrouveMonAge

Utilisation du Méta mot trouveMonAge


[/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]