Change The Meta-Description Of Home-Page?

I would like to use this script (found here), but it generates a blank page when I add it to my header.php

     if ( is_home() ) { ?>
    <meta name="description" content="Your home page meta description" />
<?php } else {  ?>  <meta name="description" content="Your none homepage meta description" /> 
<?php } ?> 

Thank’s!

Related posts

Leave a Reply

1 comment

  1. I just tried it with this code and it all worked as it should:

    <?php if ( is_home() ) : ?>
        <meta name="description" content="Your home page meta description" />
    <?php else : ?>
        <meta name="description" content="Your non-homepage meta description" />
    <?php endif; ?>
    

    You want to be sure there’s not a space between <? and php (<?php).