Skip to content

Instantly share code, notes, and snippets.

@spencermorin
Last active December 18, 2015 02:58
Show Gist options
  • Save spencermorin/5714368 to your computer and use it in GitHub Desktop.
Save spencermorin/5714368 to your computer and use it in GitHub Desktop.
<?php
$author_id = 12;
$query = new WP_Query( array( 'author' => $author_id ) );
$authors_post_ids = wp_list_pluck( $query->posts, 'ID' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment