Ben wordpress veritabanına yeni bir tablo oluşturdu. Ayrıca ben yeni tablodaki kayıtları görüntülemek için yeni bir şablon sayfa oluşturmak, ama ben bu veriler için bir sistem belleği oluşturmak istiyorum ..
Bu benim kodudur
global $wpdb;
$querystr = "SELECT * FROM wp_hotel WHERE id_city = ".$_GET['city-id'];
$pageposts = $wpdb->get_results($querystr);
if ($pageposts): ?>
<div class="list_hotels">
<?php foreach ($pageposts as $post): ?>
<?php setup_postdata($post); ?>
<div class="hotel">
<?php echo 'Hotel Name:'.$post->name-hotel; ?><br />
</div>
<?php endforeach; ?>
</div>
<?php else : ?>
<p><?php _e('No Hotel in this city ..'); ?></p>
<?php endif; ?>