0

我需要有关 wordpress 模板的帮助。

在首页我想要一个自定义的静态标题,而所有其他页面都应该使用他们页面的标题。此外,如果页面不是首页,我想在标题旁边添加一些自定义 HTML。

做这个的最好方式是什么?

4

1 回答 1

1

您可以这样做,包括 header.php 中的以下内容(我刚刚添加了一些示例内容);

        <?php 
             if ( is_front_page() ) { 
                echo '<div id="homestuff">Home stuff in here</div>';
              } elseif (is_page()) { 
                echo '<div id="pagestuff">'. the_title() .'</div>'; 
              } 
        ?>

请注意,Wordpress 中还有一个 is_home() ,有时很容易纠结 is_front_page() 或 is_home() 是否正确使用,这个 stackexchange 答案是一个很好的信息来源那;

在 Wordpress 中是否使用 is_front_page() 或 is_home()

于 2012-07-29T14:07:57.113 回答