我正在处理一个自定义查询,以显示一些帖子。我能够输出所有帖子ID。我正在尝试将这些ID转换为数组,以便在查询中使用“post\\uu in”=>$myarray。我该怎么做?
<?php
$allposts = $wpdb->get_results("SELECT `music_id` FROM `custom_table` ORDER BY id DESC LIMIT 5");
foreach ($allposts as $singlepost) {
echo \'<p>\' .$singlepost->music_id. \'</p>\';
}
?>