在标题中。php我创建了一个div来包含导航菜单区域。div中有1 x do\\u短代码,2 x包含php文件。由于某种原因,最后include (\'custom-primary-menu.php\')
正在跳过<header id="masthead"
和<div id="page" class="hfeed site">
而且只在<div class="col-full">
. 然而,其他两个看起来应该是这样的。
我认为这可能与代码末尾的open div有关,该div也是“col-full”,但我尝试重命名第一个div,结果没有什么不同。
<?php
?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( \'charset\' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2.0">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( \'pingback_url\' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php do_action( \'storefront_before_site\' ); ?>
<div class="col-full">
<div id="page" class="hfeed site">
<?php do_action( \'storefront_before_header\' ); ?>
<header id="masthead" class="site-header" role="banner" style="<?php storefront_header_styles(); ?>">
<?php
do_action( \'storefront_header\' );
?>
<?php
echo do_shortcode (\'[woo_multi_currency_layout5]\');
include (\'secondary-icon-menu.php\');
include (\'custom-primary-menu.php\');
?>
</header><!-- #masthead -->
</div>
</div>
<?php
do_action( \'storefront_before_content\' );
?>
<div id="content" class="site-content" tabindex="-1">
<div class="col-full">
<?php
do_action( \'storefront_content_top\' );
?>