How to changes header in wordpress


How to use multiple condition for different  pages header

<?php if(is_page( array( 2, ‘about-us’, ‘About Us’ ) ) ) {?>
<!–****************** Inner head Start here ******************–>
<section>
<!–****************** Wrapper Starts here ******************–>
<section>
<h1><strong>About Us</strong> <span>India’s Leading Web Solution Provider</span></h1>
<a href=”#”></a> </section>
</section>
<!–****************** Inner head Closed here ******************–>
<?php }elseif($_GET[page_id] == 16) {?>
<?php //} elseif(is_page( array( 16, ‘blog’, ‘Blog’ ) )) {?>
<section>
<!–****************** Wrapper Starts here ******************–>
<section>
<h1><strong>Blog</strong> <span>Long established fact that a reader will be distracted by the readable content.</span></h1>
<a href=”#”></a> </section>
</section>

<?php } elseif(is_page( array( 18, ‘contact-us’, ‘Contact Us’ ) )) {?>
<section>
<!–****************** Wrapper Starts here ******************–>
<section>
<h1><strong>Contact Us</strong> <span>Investing in Relationships</span></h1>
<a href=”#”></a> </section>
</section>
<?php } elseif(is_page( array( 14, ‘Training’, ‘training’ ) )) {?>
<section>
<!–****************** Wrapper Starts here ******************–>
<section>
<h1><strong>Training</strong> <span>India’s Leading Web Solution Provider</span></h1>
<a href=”#”></a> </section>
</section>

<?php } elseif(is_page( array( 12, ‘Portfolio’, ‘portfolio’ ) )) {?>
<section>
<!–****************** Wrapper Starts here ******************–>
<section>
<h1><strong>Portfolio</strong> <span>India’s Leading Web Solution Provider</span></h1>
<a href=”#”></a> </section>
</section>

<?php } ?>
<!–****************** Wrapper Closed here ******************–>
</section><!– #branding –>
<?php if(is_front_page()) { ?>
<section id=”banner”>
<!–****************** Wrapper Starts here ******************–>
<section>
<div>Welcome to Next Algorithm</div>
<figure>
<?php //if(function_exists(‘vslider’)){ vslider(‘vslider_options’); } ?>
<?php echo do_shortcode(‘[cycloneslider id=”home-page-slideshows”]’);?>

</figure>

</section>
<!–****************** Wrapper Closed here ******************–>
</section>
<?php  } ?>

Leave a comment