是否更改主页的元描述?

时间:2013-03-25 作者:gwen

我想使用此脚本(found here), 但当我将其添加到页眉时,它会生成一个空白页。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 } ?> 
谢谢!

1 个回复
SO网友:Morgan Estes

我刚刚用这段代码进行了尝试,一切正常:

<?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; ?>
你要确保<?php (<?php).

结束

相关推荐

WP SEO插件的内部机制

This is more of a conceptual question, but it has actual ramifications.Going through the various SEO plugins I found nowhere a PHP tag that should be embedded in the actual HTML page and echo the meta data. How does it work then? Simply saving it to the D