Hey,
I have an error in the following code:
<? php
function secondary_menu_listing(){
?>
<div id=secondary_menu_listed><? php
if (is_page (array('9,231,237,235')));
wp_list_pages (include='9,231,237,235');
if (is_page (array('14,121,124,119,104')));
wp_list_pages (include='14,121,124,119,104');
if (is_page (array('246,230,252,254,259,257')));
wp_list_pages (include='246,230,252,254,259,257');
?></div>
}
<? php add_action ('graphene_before_content'); ?><? php
?>
I can't seem to find out what error I'm making.
It says "Parse error: syntax error, unexpected T_FUNCTION in functions.php on line 3"
can anyone tell me what's wrong???