Şu index.php dosyasındaki kodları bendeki tabloya uygulayabilirmisiniz..

İndex php kodları

require_once("mysql.php");
$yazilar = $db->query("SELECT id,post_title,post_name,post_content,guid,post_date FROM wp_posts WHERE post_status='publish' and post_type='post' ORDER BY post_date DESC LIMIT 0,10");
while($yazi = $db->fetch_assoc($yazilar)) {
$url="https://www.siteadi.com/".$yazi['post_name']."/";
$pubDate=strftime("%Y-%m-%d %H:%M:%S", strtotime($yazi['post_date']));
$title=stripslashes($yazi['post_title']);
$content=substr(stripslashes($yazi['post_content']),0,450);



Veri tabanında almak istediğim tablo isimleri


CREATE TABLE `page_posts` (
`ID` int(11) NOT NULL,
`post_baslik` text COLLATE utf8_turkish_ci NOT NULL,
`post_detay` longtext COLLATE utf8_turkish_ci NOT NULL,
`post_tarih` datetime NOT NULL,
`post_etiket` text COLLATE utf8_turkish_ci NOT NULL,
`post_guncelleme` datetime NOT NULL,
`post_link` text COLLATE utf8_turkish_ci NOT NULL,
`post_description` text COLLATE utf8_turkish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci;