在wordpress中删除不必要的标题

时间:2016-04-10 18:15:54

标签: php wordpress

我正在使用wordpress并设法让我的网站上线。现在我在我的网站上得到了这个不必要的标题(黑色标题......在顶部),见下文:

unnecessary header

我的标题代码如下所示:

<!doctype html>
<html <?php  language_attributes(); ?> >
    <head>
        <meta charset="<?php  bloginfo('charset');   ?>">
        <meta http-equiv="x-ua-compatible" content="ie=edge">
        <title><?php bloginfo('name');  ?></title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="shortcut icon" type="image/x-icon" href="favicon.ico">        
        <link rel="stylesheet" href="style.css">

        <?php  wp_head(); ?>

    </head>
    <body <?php  body_class(); ?>>

    <header class="site-header">
        <h1><a href="<?php echo home_url(); ?>"></a><?php bloginfo('name');  ?></h1>
        <h5><?php bloginfo('description'); ?></h5>

        <nav class="site-nav">

            <?php  
                $args = array( 
                    'theme_location' => 'primary' 
                );
            ?>    

            <?php  wp_nav_menu($args); ?>

        </nav>

    </header>

我是workpress的新手,刚开始学习东西。

如何删除此标头?

谢谢。

2 个答案:

答案 0 :(得分:2)

当您在后端登录时,Wordpress会默认显示此管理栏。非管理员用户不会看到它,但您可以根据需要在个人资料中禁用此功能。

转到用户 - &gt;你的个人资料

禁用选项查看网站时显示工具栏

答案 1 :(得分:1)

remove this line, the header will goes hide 

<?php  wp_head(); ?>