php 删除WordPress中不必要的标题

2lpgd968  于 2023-04-19  发布在  PHP
关注(0)|答案(2)|浏览(96)

我只是在使用WordPress,并设法让我的网站起来。现在我在我的网站上得到这个不必要的标题(黑色标题...就在顶部),见下文:



我的头代码如下所示:

<!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>

我是WordPress新手,刚开始学习。
如何删除此标题?

sbdsn5lh

sbdsn5lh1#

当你在后台登录时,WordPress默认会显示这个管理栏。非管理员用户不会看到它,但如果你愿意,你可以在你的个人资料中禁用它。
转到用户-〉您的个人资料
禁用选项查看站点时显示工具栏

ctehm74n

ctehm74n2#

remove this line, the header will goes hide 

<?php  wp_head(); ?>

相关问题