Advertisement
kkarpieszuk

wordpress create index for wp_posts > ID

Apr 14th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. // please add this code to footer.php of your site
  4. // visit front page of your site once
  5. // then remove this code
  6.  
  7. global $wpdb;
  8.  
  9. $posts = $wpdb->prefix . "posts";
  10.  
  11. $query = "CREATE INDEX posts_ID on $posts (ID)";
  12.  
  13. $wpdb->query($query);
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement