I am using the following to put this class on a div if it is the current page.
<?php
if (is_page('12'))
{
echo ".current";
}
?>
It does not work with more than one page listed though. I tried:
<?php
if (is_page('12,13,14,15,16,17,18,19,20,21,22,23'))
{
echo ".current";
}
?>
but it didn't work. How do I go about making it work?