$formpage=implode(unserialize(get_option('_formpages[]')),",");
if (is_page(array($formpage))) {
echo '<link href="'.THEMEURI.'/forms.css" rel="stylesheet" type="text/css" />
'; }
I need to find a way to print or echo or get the array pages in the "is_page"... It works fine if I echo it in the link CSS - the 3 page IDs get added as raw text. I actually want to fnd a way to get those page IDs in the array:
if (is_page(array('44,56,29'))) {
Any help would really great guys. Thanks!
