get_posts not finding argument: post_name

Aha, despite there being a postmeta field of post_name->’slug’, the correct syntax (which mirrors that of WP_Query, is

$args = array(
      'name' => $postSlug,
      'post_type' => 'post',
      'post_status' => 'publish'
    );
$slugPosts = get_posts($args);

Where ‘name’ is the key in the query (for posts, ‘postname’ for page).

Doesn’t make much sense but might as well stick it as an answer.

Leave a Comment