$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>email - E-Mail Notification on post edit|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

email - E-Mail Notification on post edit

matteradmin8PV0评论

I've been looking for a way to notify users when a post has been edited. I've tried the following plugins:

  • Better Notifications for WordPress
  • Post Status Notifier
  • Digest Notifications

(These were tried to generate E-Mails after posts been edited)

  • Edit Flow
  • PublishPress

(These were used to create custom status for posts under edit)

In the best case, I want to notify all colleagues that a post has been edited 24h after a post hasn't been edited.

Currently, I'm trying digest notification to notify all colleagues every day with the edited posts. The setup hasn't worked out so far.

I've been looking for a way to notify users when a post has been edited. I've tried the following plugins:

  • Better Notifications for WordPress
  • Post Status Notifier
  • Digest Notifications

(These were tried to generate E-Mails after posts been edited)

  • Edit Flow
  • PublishPress

(These were used to create custom status for posts under edit)

In the best case, I want to notify all colleagues that a post has been edited 24h after a post hasn't been edited.

Currently, I'm trying digest notification to notify all colleagues every day with the edited posts. The setup hasn't worked out so far.

Share Improve this question asked Mar 4, 2019 at 16:26 BejlemBejlem 11 bronze badge 2
  • I'm not seeing a question here. Have you worked with any of the plugin developers to see if they can help with your concerns? – rudtek Commented Mar 4, 2019 at 16:45
  • I've contacted most of the developers, but only two started to respond without going into the issue itself. – Bejlem Commented Mar 5, 2019 at 9:50
Add a comment  | 

1 Answer 1

Reset to default 0

i think this should help,

https://wordpress.stackexchange/a/95512/139936

on 'save_post' hook, you can send your email. But it will only work on direct update.

if you want to wait 24h, you will have to set a cron job that will check every post & send an email with posts updated in the last XX hours.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far