在标题中显示页面标题 - Wordpress

时间:2015-10-08 20:23:16

标签: php html css wordpress header

我需要为标题图片添加标题或更多相应的网站标题。

我需要的是在正常页面中向页眉图像添加页面标题,而在首页中不会显示页面标题(因为有SVG徽标)。这是我从" content-header.php":

中获取的代码
// Display the image and text
    ?>
    <header class="content-header-image">
        <div class="<?php echo $image_class; ?>" style="background-image: url('<?php echo $image_url; ?>')">
            <div class="<?php echo $overlay_class; ?>">
            <h1 class="header-image-title"><?php echo $title; ?></h1>
            <?php if ( $subtitle ) echo '<h2 class="header-image-caption">' . $subtitle . '</h2>'; ?>
            <?php if ( $description ) echo '<p class="header-image-description">' . $description . '</p>'; ?> 

            <?php               
            // Only for static home page, show a scroll down icon
            if ( is_front_page() ) {
                echo '<div class="spacer"></div>';
                echo '<a href="#pagetop" class="scroll-down smoothscroll"><span class="glyphicon glyphicon-chevron-down"></span></a>';
            }
            ?>

            </div><!-- .cover-image-overlay or .section-image-overlay -->
        </div><!-- .cover-image or .section-image -->
    </header><!-- content-header-image -->

2 个答案:

答案 0 :(得分:1)

你可以使用 <h1><?php bloginfo('name'); ?></h1>

答案 1 :(得分:0)

您将要使用

    if(is_front_page()){ what you have }
      else{ echo 'other content for other pages';}

有条件地在主页上显示徽标,并在所有其他页面上显示其他内容