Merhaba Dostlarım Aşağıdaki Resim'de Oklarla Gösterdğim Gibi Kategoriye Özel Arka Plan Nasıl Ayarlıyabilirim ?
http://i.hizliresim.com/L4Pkjo.png
[ÇÖZÜLDÜ] Yardım - Wordpress Kategoriye Özel Renk Nasıl Verebilirim ? |
12 Mesajlar | 2.375 Okunma |
function kategoriler(){
$kategoriler= get_the_category();
$ayrac= ', ';
$cikti = '';
if($kategoriler){
foreach($kategoriler as $kategori){
$cikti.= 'name ) ) . '">'.$kategori->cat_name.''.$ayrac; }
echo trim($cikti, $ayrac);
}
}
a.wordpress{ background-color: green; }
a.script{ background-color: blue; }
function kategoriler(){
$kategoriler= get_the_category();
$ayrac= ', ';
$cikti = '';
if($kategoriler){
foreach($kategoriler as $kategori){
$cikti.= 'name ) ) . '">'.$kategori->cat_name.''.$ayrac; }
echo trim($cikti, $ayrac);
}
}
a.wordpress{ background-color: green; }
a.script{ background-color: blue; }
.article:nth-child(2n) a.category{ background-color: red}
.article:nth-child(2n) a.category{ background-color: green}
.article:nth-child(3n) a.category{ background-color: blue}
.article:nth-child(4n) a.category{ background-color: black}
...
.article:nth-child(2n) a.category{ background-color: red}
.article:nth-child(2n) a.category{ background-color: green}
.article:nth-child(3n) a.category{ background-color: blue}
.article:nth-child(4n) a.category{ background-color: black}
...