Skip to content

Instantly share code, notes, and snippets.

@alexsancho
Created March 10, 2018 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexsancho/045b3cfedf4c6f32874e47ec2fa50499 to your computer and use it in GitHub Desktop.
Save alexsancho/045b3cfedf4c6f32874e47ec2fa50499 to your computer and use it in GitHub Desktop.
post.php
$posts_ids = get_posts('post_type=post&posts_per_page=-1&fields=ids');
// $posts_ids is now an array of IDs
foreach( $posts_ids as $post_id ) {
save_index( $post_id );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment