仅从主页中删除部分标题代码

时间:2013-04-16 作者:bgbs

我在模板文件中有此代码header.php:

<div class="dynamic-header">
    <?php if(function_exists(\'show_media_header\')){ show_media_header(); } ?>
</div>
我想处理所有页面上的标题信息,除了主页。我怎样才能做到这一点?

2 个回复
SO网友:fuxia

可以组合多个条件语句:

<?php 
if ( function_exists( \'show_media_header\' ) 
    and ! is_home() // list of newest blog posts
    and ! is_front_page() // front page, might be a static page
)
{ 
    show_media_header(); 
} 
?>
你不需要一个单独的文件。

SO网友:ckpepper02

您不需要单独的文件,只需执行以下操作:

<? if (!is_front_page()){ ?>
<div class="dynamic-header"><?php if(function_exists(\'show_media_header\')){ show_media_header(); } ?></div><?
}
?>

结束

相关推荐

wp_mail and BCC headers

我正在使用WP 3.3.1我正在尝试将密件抄送添加到我正在发送的电子邮件的标题中,但没有添加密件抄送。public $from = \"[email protected]\"; public $replyTo = \"[email protected]\"; public $bcc = \"[email protected]\"; $headers[\'From\'] = \"From: \".$this->from; $h