In my blog : http://www.lebardessciences.com I have a glossary category (Lexique, id=30). I do not want it to appear on the index page.
By searching here I found that adding
PHP Code:
<?php if ( !in_category('30') ) { ?>
Now the problem is : when I clic on this specific category, I can see the list of the posts titles but when I clic on one of them, the post content is missing ! I can only see the comment box.
If you want to check : http://www.lebardessciences.com/category/lexique/
I think this is because of that line I modified in the loop, because if I change
PHP Code:
<?php if ( !in_category('30') ) { ?>
PHP Code:
<?php if ( !in_category('XX') ) { ?>
I think I should add something which tells the browser not to display the posts from cat 30 EXCEPTED when I clic on this cat 30. I looked something with is-category('30') but nothing worked so far.
If anyone knows...let me know in turn

OK I searched a little more and I found a post from Juggledad saying that
PHP Code:
<?php if (is_front_page() and !in_category('xx')) { ?>