Merhaba arkadaşlar,
Wordpress anasayfada Vbulletin son konuları gösterme başlığından anlaşıldığı gibi forum bölümünden eklenen son konuları portal olarak kullandığım wordpress'te göstermek istiyorum.
Google'den birkaç sonuç çıktı ama henüz son konuları gösteremedim, bahsettiğim şekilde göstermek için bir eklenti ya da her ne isim verirseniz işte varsa paylaşabilirseniz sevinirim.
Kolay gelsin.
Wordpress anasayfada Vbulletin son konuları gösterme.
7
●1.403
- 05-03-2009, 17:21:13Doğru düşünüyorsunuz .h4run adlı üyeden alıntı: mesajı görüntüle
Görünüm > Bileşenler > RSS bileşen ekle diyebilirsiniz . - 05-03-2009, 17:25:23Kimlik doğrulama veya yönetimden onay bekliyor.Vbulletinde son konuları database ile bağlantı yapıp çeken bir scripti sidebara include etmeniz yeterli diye düşünüyorum.
- 05-03-2009, 17:34:17
<? $db_host = "localhost"; // Change this if your MySQL database host is different. $db_name = "xxxxx"; // Change this to the name of your database. $db_user = "xxxxx"; // Change this to your database username. $db_pw = "xxxxx"; // Change this to your database password. $forum_url = "http://dizi.gen.tr/forum"; // Change this to reflect to your forum's URL. $forum_id = ""; // If you wish to display the posts from a specific forum, enter the forum id here. Otherwise, leave it blank. $limit = "10"; // Number of posts displayed. $titlecolor = "#67afe6"; // This is the color of the title. $postedcolor = "#000000"; // This is the color of the bottom text. $txtlimit = "100"; // This is the character limit. ####################################### // Connecting to your database mysql_connect($db_host, $db_user, $db_pw) OR die ("Cannot connect to your database"); mysql_select_db($db_name) OR die("Cannot connect to your database"); // Below is the beginning of a table. If you feel you don't need it, you may remove it. echo "<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" bgcolor=\"#ffffff\">"; if ($forum_id) { $forumid = "AND forumid=$forum_id"; } if ($limit) { $limited = "LIMIT $limit"; } $thread_sql = mysql_query("SELECT threadid,title,lastpost,lastposter FROM thread WHERE visible=1 AND open=1 $forumid ORDER BY lastpost DESC $limited"); while($thread_get=mysql_fetch_array($thread_sql)) { $lastpost = $thread_get['lastpost']; $poster = $thread_get['lastposter']; $tid = $thread_get['threadid']; $psql = mysql_query("SELECT postid FROM post WHERE threadid=$tid ORDER BY postid DESC"); $getp=mysql_fetch_array($psql); $pid = $getp['postid']; $date2 = date ("m/d/y h:i A" ,$lastpost); $title = $thread_get['title']; $title = substr($title,0,$txtlimit); echo "<tr><td><font size=\"2\" face=\"verdana,arial,geneva\"><a href=\"$forum_url/showthread.php?p=$pid#post$pid\" target=\"_blank\"><FONT SIZE=\"2\" COLOR=\"$titlecolor\" face=\"verdana,arial,geneva\">$title</FONT></a></font><br /><font color=\"$postedcolor\" face=\"verdana,arial,geneva\" size='1'>gönderen: $poster </FONT></td></tr>"; } echo "</table>"; ?>bu tarz bir anlatım vardı arkadaşın anlattığı şekilde yaptım ama hata verdi. - 20-10-2010, 23:01:23bu konuya çözüm bulunamamış.tam da benim aradığım özellik.arkadaşlar bu işlem için bildiğiniz bir wordpress eklentisi var mı? vb 4 kullanıyorum. vbreader adında bir eklenti buldum fakat sanırım vb4 versiyonu ile uyumlu değil