web-dev-qa-db-fra.com

Comment afficher une date telle "il y a x"

Je veux afficher la date en fonction du temps écoulé depuis, i. e. Publié il y a 12 minutes

3
Diana

C’est très simple: il suffit de remplacer la get_the_date() ou la the_date() par

echo human_time_diff(get_the_time('U'), current_time('timestamp')) . ' ago';
6
Diana