我正在学习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); ?>
现在,当我检查在前端,即我加载我的网站,我看到我的菜单中唯一的项目是“样本页”,我是从1:38起**HERE**,你会看到这个家伙如何得到一个菜单,“关于我们”,“家”,“联系人”等...
现在为什么我没有得到相同的,我怎么能创建这些菜单?
2条答案
按热度按时间wkftcu5l1#
要创建你自己的菜单,你需要先进入你的wp-admin控制面板,然后进入外观/菜单。
您可以在这里创建自己的菜单,或者修改现有菜单。完成后,请在页面页脚附近的“保存菜单”选项前选择菜单的角色。
我希望你们都做完了!
ubof19bj2#
您的代码正在将“主要”主题位置附加到wp_nav_menu。转到 Jmeter 板“外观”〉“菜单”页面,查看“选择要编辑的菜单”旁边的下拉菜单中是否有“主要”菜单。如果有,请选择它。该菜单中的页面将显示。您可以根据需要添加到这些页面。