要删除其他页面上的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() ) :
?>