我想从所有其他页面中删除主页标题图像

时间:2017-03-27 作者:Sarah

我想从所有其他页面中删除主页标题图像。当您单击单个文章时,功能图像和标题图像以一种不讨人喜欢的方式相互混合。需要在图像之间进行分隔,或者仅在主页上保留标题图像。

www.mybesthelperblog。wordpress。com公司

2 个回复
SO网友:Cedon

将调用包装到标题图像中header.php 文件包含以下内容:

if ( is_front_page() ) {
   // Call to Header Image
}

SO网友:Jignesh Patel

当前主题标题。php文件在调用logo时有放置条件。比如像这样。

<?php 
if ( is_front_page() ) {
    twentysixteen_the_custom_logo();
    }
?>
我希望是有用的。

相关推荐

Where is this inline CSS code

CSS代码在哪里?我是说margin-top: 46px !important!;我需要把它改成1px 去掉上边距。但我没有在任何主题的文件中找到它。Note: I have searched the texts in all files using FileSeek Pro. 但什么也没发现。(即使Firefox中有Inspect元素)