Advertisement
kkarpieszuk

3000 pages

Jan 22nd, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. // add this snippet to footer.php
  4. // add ?3000pages=true to page url to run this code
  5.  
  6. if ( isset( $_GET['3000pages'] ) ) {
  7. $i = 1;
  8. while ( $i <= 3000) {
  9. $page = array(
  10. 'post_name' => "AutoPage $i",
  11. 'post_content' => "Page $i content...",
  12. 'post_type' => 'page',
  13. 'post_status' => 'publish'
  14. );
  15. wp_insert_post($page);
  16. $i++;
  17. }
  18. echo "$i pages created, please remove script now";
  19. }
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement