如何删除2111(默认主题)子页面上的页眉图像?

时间:2011-10-13 作者:Highlander

我想删除除“主页”之外的所有页面上的标题图像。

有什么想法吗?

厚度

3 个回复
SO网友:Doug

编辑header.php 归档并修改以下行(可能在第78-82行附近):

Before

        <?php
            // Check to see if the header image has been removed
            $header_image = get_header_image();
            if ( ! empty( $header_image ) ) :
        ?>

After

        <?php
            // Check to see if the header image has been removed
            $header_image = get_header_image();
            if ( ! empty( $header_image ) && is_front_page() ) :
        ?>

SO网友:KevinC

这对我有用。

改变

如果($header\\u image):

if($header\\u image&;is\\u front\\u page()):

SO网友:Devise

从类别、帖子、单个等文件中删除标题图像代码(将其保留在index.php文件中)。

如果这没有帮助,请解释主题的结构,并发布一些代码以获得其他帮助。

结束

相关推荐

Adding goodies to themes

如何在主题更新时向Arjuna-X等主题添加内容而不丢失?儿童主题是一种很好的方式,还是有其他选择?如果新版本的主题对我添加的功能具有本机支持,该怎么办?