How to display certain posts by their id? I do this:
$recent = new WP_Query(['p' => 10207]); Displays only one, as indicated by one id. I do this:
$recent = new WP_Query(['p' => [10207, 10117]]); A request error occurs.
Source: https://ru.stackoverflow.com/questions/852993/
All Articles