I need to display a different header logo image for one particular page (about)
In page.php Can I substitute the header call from get_header(); to
<?php
if ( is_page( 'about' ) ) :
get_header('about');
else :
get_header();
endif;
?>
Where header-about.php is the new header calling a different logo.
Is there an better way please?














