• Hello,

    The Eclipse theme I installed is placing the titles of my website’s pages across the top of the home page. I have been unable to prevent that from happening. Is it being caused by the array code below? Or how can I find the code that is causing it?

    Does anyone know how I could suppress the pages from appearing in the header? (Please note that the <?php wp_list_pages('exclude=11' ); ?> did not work to exclude them.)

    Thank you,

    Bob

    <header>
    
    	<?php
    		foreach(explode(",", $options->get('header_section_order')) as $fn) {
    			if(function_exists($fn)) {
    				call_user_func_array($fn, array());
    			}
    		}
    	?>
    
    </header>
  • The topic ‘Unable to change header in Eclipse’ is closed to new replies.