ฉันพยายามดึงข้อมูลในฐานข้อมูลของฉัน ฉันต้องการที่จะแสดงทั้งหมดpages
โดยใช้คำสั่งนี้ แต่ฉันว่างเปล่าARRAY
global $wpdb;
$result = $wpdb->get_results (
"
SELECT *
FROM $wpdb->wp_posts
WHERE post_type = 'page'
"
);
echo $result; // display data
เอาท์พุท:
ARRAY
แก้ไข : หลังจากเปลี่ยนคำแนะนำด้านล่างตอนนี้ฉันใช้สิ่งนี้ แต่ฉันยังไม่ได้รับผลลัพธ์ใด ๆ :
global $wpdb;
$posts = $wpdb->wp_posts;
$result = $wpdb->get_results( " SELECT * FROM $posts WHERE 'post_type' = 'page' " );
foreach ($result as $page) {
echo $page->ID.'<br/>';
}
$wpdb->wp_posts
ด้วยเครื่องมือจัดฟันเช่น{$wpdb->wp_posts}
..