Vous cherchez un moyen d’afficher un message à vos utilisateurs pour les avertir qu’un article a plus d’un an ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour notifier les lecteurs des anciens articles dans WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier single.php de votre thème.
<?php $time_defined_as_old = 60*60*24*365; // A Year if((date('U')-get_the_time('U')) > $time_defined_as_old) { echo '<div class="notice"><strong>Notice</strong><br />This article is published more than one year ago. Information in this article might be irrelevant with current situation</div>'; } ?>
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez vous référer à notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas briser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 43 thèmes de photographie pour WordPress et comment créer un formulaire de contact sur WordPress.
Is there a way to have it notify in admin instead of live if a post has reached a certain age?
How are you thinking to display this? like something within the posts columns.
Exactly, just an indicator next to the post that it hasn’t been updated in X number of months,days.
Also, it may be beneficial to have items in “Right Now” on the dashboard. older than 6 months, 1 year, etc.
Hi Zach I think you would need to have something on the dashboard, if the site was like wpsnipp.com I have over 460 posts as a result I would never see the icon unless I viewed very old posts. Ill look into the idea see if I can’t post a new snippet, great idea though.
The exact same thing would occur with us as well. That’s why I was saying adding it to “right now” might work.
[…] This post was mentioned on Twitter by HTMLfrp, WPSNIPP. WPSNIPP said: #wordpress Notify readers of old posts http://bit.ly/g5vVcB #blog please RT 🙂 […]
WordPress Notify readers of old posts – wpsnipp.com WordPress code snippets for your blog…
Adding this to your wordpress theme will display a message to your visitors to notify them when a post is over a year old….