Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2. /****
  3. / removing old posts with wp_trash
  4. ****/
  5. require_once '/home/xxx/public_html/wp-load.php';
  6.  
  7. add_action( 'init', 'del_posts', 30 );
  8.  
  9.  
  10. function del_posts() {
  11.     echo 'something';
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement