Está procurando uma maneira de exibir uma mensagem aos seus usuários para notificá-los quando uma publicação tiver mais de um ano? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para notificar os leitores sobre publicações antigas no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo single.php do seu tema.
<?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>'; } ?>
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress, para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 43 temas de fotografia para WordPress e como criar um formulário de contato no 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….