Saturday, February 07, 2009

wordpress de son yazıları kategorilerden alma

wordpress güzel bir blog yazılımıdır. ama böle incik cıncık bilmem hiç genelde temayı giydirir kullanırım. neyse gece gece kibaki dioki bu kategorilere tıklıom son yazılar hala genelden gelio. önce anlamadım :) sonra baya çizimli anlatıo. sonuç kod okunur. bu temada index.php de olan

query_posts('showposts=10');


bulunur bu bi döngü yapıo ul ler falan printlio. tamam olay burdada bu ne aq ben basit php biliom. wp api kurcalamak gerek püff derken ilk arama sonucu sayfa bulunuyor yukardaki fonksiyon mis gibi anlatılmış. tam örnek kodlara bakarken kategoriye görede getirio bu denir ve yukarısı aşağıya çevrilir.

$categoryvariable=$cat; // assign the variable as current category
$query= 'cat=' . $categoryvariable. '&orderby=date&order=DESC'; // concatenate the query
query_posts($query); // run the query


bi ara korktym diğer sayfaları bozmasın diede walla süfer çalışdı sevindim ehe :D

No comments:

odd string diff

 https://leetcode.com/problems/odd-string-difference/ Beats 19.92% of users with Java   class Solution { public String oddString ( S...