I am digging up posts with a specific slug:
Where
$postSlug = 'abc'
$args = array(
'post_name' => $postSlug,
'post_type' => 'post',
'post_status' => 'publish'
);
$slugPosts = get_posts($args);
Output of $slugPosts[0]->post_name:
$slugPosts[0]->post_name = 'xyz'
What am I doing wrong here? How can I get a post from a slug?
