仅在主页上显示TwentyEleven页眉图像

时间:2011-12-15 作者:danielbelsea

我试图删除一个页面的标题(实际上所有页面都不包括主页),我做了一些研究,发现了这段代码#post xx。条目标题{显示:无;}而xx是页面ID。但是它对我不起作用,你知道确切的代码和确切的位置(以及页面ID是什么),或者其他任何方式。。。任何帮助都将不胜感激

我的网站www.danielbeseamusic。com公司

非常感谢daniel

2 个回复
最合适的回答,由SO网友:ptriek 整理而成

要删除其他页面上的211主题的标题图像,然后删除主页,请更改标题中的以下代码。php(wp内容/主题/twentyeleven)

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网友:Shane

在您对Viruthagiri的评论中,您提到“图片占据了太多的位置”,因此,假设您确实想要删除标题中的图像,而不是标题本身,您可以像这样快速执行操作:

 <?php if( is_home() ) { ?>
      <img src="your-image-source-here" />
 <?php } ?>
在标题内。php文件

结束