Hi,
I'd like to add into my sidebar.php something like this:
If we are in category ID = 1: write-> : LOrem Ipsum 1
If we are in category ID = 2: write-> : Lorem Ipsum 2
<php if (in_category(1)) echo "Lorem Ipsum 1"; ?>
Does not work.
Help...
Hi,
I'd like to add into my sidebar.php something like this:
If we are in category ID = 1: write-> : LOrem Ipsum 1
If we are in category ID = 2: write-> : Lorem Ipsum 2
<php if (in_category(1)) echo "Lorem Ipsum 1"; ?>
Does not work.
Help...
try is_category
this will only work on category archive pages, while you browse.
Ivovic, I luv you, but...
<?php
if(is_category('14'))
echo 'Lipsum';
?>
Does not work... why?
because you're not on a category archive page?
be specific about where you want to use this please - sidebars are everywhere, saying "sidebar" isn't enough - what page will you be viewing? single post? /category/catname? the home page?
This topic has been closed to new replies.