morktron
Member
Posted 2 years ago #
Hi, does anyone know how to disable the sidebar for a specific category?
I don't know php so this is what I came up with:
<?php
if (is_category('3')) {
// no sidebar for category 3
} else {
// otherwise show sidebar
(get_sidebar(''))
?>
but of course it doesn't work. Any ideas?
morktron
Member
Posted 2 years ago #
Is there anybody out there? just nod if you can hear me.
you need a closing bracket.
morktron
Member
Posted 2 years ago #
Thanks Charlie97, I don't know how to write php yet, please could you tell what a php closing bracket is?
thanks :)
<?php
if (is_category('3')) {
// no sidebar for category 3
} else {
// otherwise show sidebar
(get_sidebar(''))
}
?>