postmeta에서 post_id를 다음과 같이 가져옵니다.
$post_id = $wpdb->get_results("SELECT post_id FROM $wpdb->postmeta WHERE (meta_key = 'mfn-post-link1' AND meta_value = '". $from ."')");
내가 시도 print_r($post_id);
하면 다음과 같은 배열이 있습니다.
Array
(
[0] => stdClass Object
(
[post_id] => 140
)
[1] => stdClass Object
(
[post_id] => 141
)
[2] => stdClass Object
(
[post_id] => 142
)
)
그리고 나는 그것을 횡단하는 방법을 모르고 어떻게 이렇게 배열을 얻을 수 있습니까?
Array
(
[0] => 140
[1] => 141
[2] => 142
)
어떻게 할 수 있는지 아십니까?