Guest User

Untitled

a guest
Apr 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name:
  4. Plugin URI:
  5. Plugin Description:
  6. Version: 0.0
  7. Author:
  8. Author URI:
  9. */
  10.  
  11.  
  12. // run it hourly
  13. wp_schedule_event(0,'hourly','post_from_outside');
  14.  
  15. function post_from_outside() {
  16. // do something
  17.  
  18. $timestamp = wp_next_scheduled("post_from_outside");
  19. $timestamp = date('Y-m-d, g:i a', $timestamp);
  20.  
  21. echo $timestamp;
  22. }
  23.  
  24.  
  25.  
  26.  
  27. ?>
Add Comment
Please, Sign In to add comment