Wordpress菜单不显示某些页面上的所有菜单项

时间:2015-07-24 14:58:37

标签: wordpress wordpress-theming

我已经搜索了一段时间,找不到任何与我的问题有关的内容。

我有一个WordPress网站,我添加了一个新的菜单项,它不会显示在某些页面上,而是显示在其他页面上。

这是网站: http://www.allproplumbers.com/

Plumbing下的第4个菜单项应该是热水器品牌,因为它位于Plumbing页面上。

我没有得到它,它的菜单相同或应该在所有页面上。 即使检查元素也不会显示它。

很抱歉,如果这篇文章没有包含足够的信息,我只是不知道还有哪些内容可以发布。 我没有任何缓存插件,我使用Swell模板(是的,我在那里检查过)但是一切都是为了让它在某些页面上显示菜单,我需要所有页面上的所有菜单项。

如果我还有其他内容可以发布以解决此问题,我会发布它。

根据要求,页眉和页脚代码:

的header.php

<!DOCTYPE html>
<html lang="en">
<head>
<title><?php wp_title(' &#187; ', true); ?></title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="<?php echo_theme_dir('parent') ?>/favicon.png" />
<meta name="google-site-verification" content="sdUWtQY93zlQ0vEZ-gkNKX9ZAMRop4uUuMiR5v3ar6Y" />
<?php   
    wp_register_style( 'slbase', get_theme_dir('parent') . "/css/base.css" );
    wp_enqueue_style( 'slbase' );       
?>  
<?php   
    wp_register_style( 'sldefault', get_theme_dir('parent') . "/css/default.css" );
    wp_enqueue_style( 'sldefault' );        
?>
<?php   
    wp_register_style( 'style', get_theme_dir('parent') . "/style.css" );
    wp_enqueue_style( 'style' );        
?>
<?php   
    wp_register_style( 'cstyle', get_theme_dir('parent') . "/custom.css" );
    wp_enqueue_style( 'cstyle' );       
?>
<?php wp_head(); ?>
<?php load_google_font('Asap:400,700'); ?>  
<?php load_google_font('Droid+Sans'); ?>    
<?php include_once(get_template_directory().'/inc/options.php'); ?>
</head>
<body <?php body_class(); ?>>
<header id="header" class="row">
    <div class="container">
        <div class="logo left">
        <?php if($swell_opt['logo'] == null): ?>
            <div id="logo"><a href="<?php echo (site_url()); ?>" title="<?php bloginfo('name'); ?> Home"><?php bloginfo('name'); ?></a></div>
            <h3 id="tagline" class="alt"><?php bloginfo('description'); ?></h3>
        <?php else: ?>
            <a title="<?php bloginfo('name'); ?>" href="<?php echo (site_url()); ?>"><img src="<?php echo $swell_opt['logo']; ?>" alt=""/></a>
        <?php endif; ?>
        </div>  
        <?php if($swell_opt['call_us_banner'] !== ''): ?>
            <?php echo $swell_opt['call_us_banner']; ?>
        <?php endif; ?>
    </div>  
</header>
<nav id="nav" class="row">
    <div class="container">
        <?php get_template_part('parts/mobile-menu'); ?>
        <?php get_template_part('parts/top-bar'); ?>
        <a href="#requestcallback-hide" class="request-call"><img src="<?php echo get_theme_dir('parent'); ?>/images/request-callback.png" alt=""/></a>
    </div>
</nav>
<?php if(is_page('home')):?>
<div class="slider-container">
    <?php echo do_shortcode('[rev_slider home-slider]'); ?>
</div>
<?php endif; ?>
<div class="clearfix"></div>

footer.php

                <?php global $swell_opt; ?>
            <footer id="footer" class="footer-container">
                <div class="row footer-top">
                    <div class="container common">  
                        <div class="col-3-12">
                            <?php wp_nav_menu( array('menu' => 'Footer', 'menu-class' => '') ); ?>
                        </div>
                        <div class="col-3-12">
                            <?php wp_nav_menu( array('menu' => 'Footer Right', 'menu-class' => '') ); ?>
                        </div>
                        <div class="col-6-12" id="contact-us">
                            <?php echo do_shortcode('[contact-form-7 id="64" title="Footer Form"]'); ?>
                        </div>
                    </div>                               
                </div>
                <div class="row footer-bottom">
                    <div class="container common copyright">
                        <div class="credit">
                            <a href="#"><img src="<?php echo get_theme_dir('parent'); ?>/images/bbb.png" alt=""/></a>
                        </div>
                        <ul class="social-media">
                            <?php if($swell_opt['facebook'] !== ''): ?>
                            <li><a href="<?php echo $swell_opt['facebook']; ?>" class="fb" title="Facebook"></a></li>
                            <?php endif; ?>
                            <?php if($swell_opt['twitter'] !== ''): ?>
                            <li><a href="<?php echo $swell_opt['twitter']; ?>" class="twitter" title="Twitter"></a></li>
                            <?php endif; ?>
                            <?php if($swell_opt['google_plus'] !== ''): ?>
                            <li><a href="<?php echo $swell_opt['google_plus']; ?>" class="gplus" title="Google Plus"></a></li>
                            <?php endif; ?>
                        </ul>
            <p>All Pro Plumbing Services 5075 E Airport Drive Ontario CA 91761</p>
            <br>
                        <?php echo $swell_opt['copyright']; ?>
                    </div>
                </div>
            </footer>
            <div id="requestcallback-hide" class="white-popup mfp-hide">
              <?php echo do_shortcode('[contact-form-7 id="410" title="Request a Callback"]'); ?>
            </div>
            <div id="requestqoute-hide" class="white-popup mfp-hide">
              <?php echo do_shortcode('[contact-form-7 id="411" title="Request a Quote"]'); ?>
            </div>
            <div id="schedule-service-form" class="white-popup-large mfp-hide">
                <h2 class="center">Schedule a Service</h2>
                <iframe src="http://www.allproplumbers.com/request-free-estimate.htm" width="100%" height="1250" frameborder="0"></iframe>
                <!--<script type="text/javascript" src="http://form.jotform.us/jsform/xxxxxxxxxxxx"></script>-->
            </div> 
            <?php
                // load scripts 
                wp_deregister_script('jquery');
                wp_enqueue_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, false, true);
            ?>
            <?php wp_enqueue_script( 'slcommon', get_theme_dir('parent') . '/js/common.js', array('jquery'), false, true ); ?>
            <?php wp_footer(); ?>
            <script>
              (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
              (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
              m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
              })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
              ga('create', 'UA-xxxxxxxx-1', 'auto');
              ga('send', 'pageview');
            </script>
            <!-- Google Code for Website Form Conversion Page -->
            <script type="text/javascript">
            /* <![CDATA[ */
            var google_conversion_id = xxxxxxxx;
            var google_conversion_language = "en";
            var google_conversion_format = "3";
            var google_conversion_color = "ffffff";
            var google_conversion_label = "wUWSCNvBvF4Q1eDr4AM";
            var google_remarketing_only = false;
            /* ]]> */
            </script>
            <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
            </script>
            <noscript>
            <div style="display:inline;">
            <img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/xxxxxxxxx/?label=wUWSCNvBvF4Q1eDr4AM&amp;guid=ON&amp;script=0"/>
            </div>
            </noscript>
            </body>

我正在再次编辑,因为该网站要求我不要过多评论,而是将其转为聊天,但我没有聊天权。

所以我有一个朋友在另一个州加载网站,它出现了应该的位置,然而,他刷新了页面,现在已经消失了。

这让我立刻想到了cookie,但就像我之前说过的那样,网站上没有缓存插件,是否有cookie插件或我看不到的东西? @ ham-sandwich如果你刷新主页现在它在你的缓存中,它是否仍然显示?

0 个答案:

没有答案