Veritabanımdaki bilgileri almaya çalışıyorum. Hepsini pages
bu ifadeyi kullanarak görüntülemek istedim , ama boşARRAY
global $wpdb;
$result = $wpdb->get_results (
"
SELECT *
FROM $wpdb->wp_posts
WHERE post_type = 'page'
"
);
echo $result; // display data
Çıktı:
ARRAY
EDIT : Aşağıdaki önerileri değiştirdikten sonra şimdi kullanıyorum. ama yine de sonuç alamıyorum:
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
Kıvırcık parantezlerle sarmayı deneyin , yani.{$wpdb->wp_posts}
..