current-cat をシングルページにも
2009/5/25カテゴリーのナビゲーションにcurrent-cat と言うクラスを付けると表示中のカテゴリーの背景色や文字色を変えることができるが、これはシングルページには適用されない。
これをシングルページでも表示中のカテゴリーにcurrent-cat を適用させるには、コンディショナルタグを in_category() で書く必要がある。
<li class=<?php if (in_category(1)): ?>"current-cat"<?php elseif (in_category(2)): ?>"aaa""<?php else: ?>"bbb"<?php endif; ?>> ~ </li>
カテゴリー1の時は current-cat 、カテゴリー2の時は “aaa” 、それ以外の場合は “bbb” のクラスを適用する。
条件を複数付ける場合は↓のように。
<li class=<?php if (in_category(1) || in_category(3)): ?>"current-cat"<?php endif; ?>> ~ </li>
●● 投稿タイトル:current-cat をシングルページにも | カテゴリー: Working ●●



最近のコメント