I'm trying to use an if
statement to change the <header>
tag depending on if it's the homepage or another page.
I have tried:
<?php
function specific_bgpages() {
if(is_home())
echo '<header>';
elseif(is_page() )
echo '<header class="bgpages">';
}
add_action('genesis_header', 'specific_bgpages);
?>
But it's not working.
I'am using the CMS Monstra editor. Not wordpress.