merhaba arkadaşlar
wordpress sitemdeki yazıları rastgele olarak başka bir sitemde göstermek istiyorum.
Site içerisinde bunu yapmak için kod ve eklentiler mevcut fakat başka sitede bunu nasıl gösterebilirim ?
// Tanımlama yapıyoruz.
define('WP_USE_THEMES', false);
require('/var/www/site.com/wordpress-dizininiz/wp-load.php');
query_posts('showposts=1');
?>
query_post('showpost=1');
query_post('showpost=1&orderby=rand');
$db = "rastider";
$host = "localhost";
$dbuser = "root";
$dbpass = "";
$conn = @mysql_connect($host,$dbuser,$dbpass);
if(! $conn) die ("Mysql Baglantisi Yapilamadi");
@mysql_select_db($db,$conn) or die ("Veri Tabanina Baglanti Yapilamadi");
$sql = mysql_query("SELECT * FROM wp_posts WHERE (post_status='publish' AND post_type='post') ORDER BY RAND() LIMIT 1");
while($row=mysql_fetch_array($sql)){
?>
function ftcevir($Str) {
$Str = str_replace("İ","İ",$Str);$Str = str_replace("ı","ı",$Str);
$Str = str_replace("Ö","Ö",$Str);$Str = str_replace("ö","ö",$Str);
$Str = str_replace("Ü","Ü",$Str);$Str = str_replace("ü","ü",$Str);
$Str = str_replace("Ç","Ç",$Str);$Str = str_replace("ç","ç",$Str);
$Str = str_replace("Ğ","Ğ",$Str);$Str = str_replace("ğ","ğ",$Str);
$Str = str_replace("Ş","Ş",$Str);$Str = str_replace("ş","ş",$Str);
$Str = str_replace("â","â",$Str);$Str = str_replace("Â","Â",$Str);
$Str = str_replace("î","î",$Str);$Str = str_replace("Î","Î",$Str);
$Str = str_replace("û","û",$Str);$Str = str_replace("Û","Û",$Str);
return $Str;
}
?>