如何制作wordpress菜单项?

时间:2016-04-10 16:57:15

标签: php wordpress

我正在学习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>

现在我相信,菜单实际上是由以下代码行创建的:

        <?php  wp_nav_menu($args); ?>

现在当我检查前端时,IE加载我的网站,我看到我的菜单中唯一的项目是“样本页面”,我从1:38开始关注 HERE < / strong>你会看到这个家伙如何获得一个“关于我们”,“家”,“联系”等菜单......

现在为什么我没有得到相同的,我如何创建这些菜单?

谢谢。

2 个答案:

答案 0 :(得分:1)

要创建自己的菜单,您需要先转到您的wp-admin信息中心。然后转到外观/菜单。

Go to Appearance/menus

您可以在此处创建自己的菜单或修改现有菜单。执行此操作后,在“保存菜单”选项之前,从页面的近页脚中选择菜单的角色。 Set the locations for the menu.

我希望你们都完成了!

答案 1 :(得分:0)

您的代码正在将“主要”主题位置附加到wp_nav_menu。转到仪表板外观&gt;菜单页面,看看您是否有主菜单 “选择要编辑的菜单”旁边的下拉菜单。如果是这样,请选择它。该菜单中的页面应该显示。您可以根据需要添加它们。