yapman gereken kategoriye özel css kodu göstertmek.
Örnek
<?php if( in_category(1) ) { ?>
<style type="text/css">background: #000;</style>
<?php } ?>
Eğer kategori id'si 2 olan kategorinin beyaz siyah yapmak istiyorsan da yine </head> tagından hemen önce şu kodu yerleştir:
Kod:
<?php if( in_category(2) ) { ?>
<style type="text/css">background: #FFF;</style>
<?php } ?>