我正在学习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>你会看到这个家伙如何获得一个“关于我们”,“家”,“联系”等菜单......
现在为什么我没有得到相同的,我如何创建这些菜单?
谢谢。