Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. if (! wp_next_scheduled ( 'my_hourly_event' )) {
  3. wp_schedule_event(time(), 'hourly', 'my_hourly_event');
  4. }
  5.  
  6. add_action('my_hourly_event', 'do_this_hourly');
  7.  
  8. function do_this_hourly() {
  9. update_option('show_my_notification', true);
  10. }
  11.  
  12. /**
  13. * Run This in Where in Your Notifications HTML
  14. */
  15. function show_my_notification() {
  16. if(get_option('show_my_notification')){
  17. // Put Your Notification HTML or Function
  18. update_option('show_my_notification', false);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement