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 shortcode pour WordPress 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]
//Permet de retrouver l’age par rapport a la date de naissance
//la fonction accepte le format francais et anglais
//utlisation [trouveMonAge date="1984-06-12"] ou [trouveMonAge date="12-06-1984"]
function trouveMonAgeFCT($atts){
extract(shortcode_atts(array(‘date’ => »), $atts));
$age = date(‘Y’) – date(‘Y’, strtotime($date));
if (date(‘md’) < date(‘md’, strtotime($date))) {
return $age – 1;
}
return $age;
}
add_shortcode(‘trouveMonAge’, ‘trouveMonAgeFCT’);
[/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 »]