简体   繁体   English

WordPress下拉菜单不适用于我的主题

[英]Wordpress dropdown not working in my theme

I can't seem to know what I'm doing wrong. 我似乎不知道自己在做什么错。 The dropdown navigation appears when I'm using the default wordpres twentyeleven theme but when I swith to my theme, the dropdown doesn't appear. 当我使用默认的wordpresevenseven主题时,将显示下拉菜单,但是当我切换主题时,则不会出现该下拉菜单。 This is what I'm using 这就是我正在使用的

<div id="nav" class="menutwo">

    <ul id="myStyle">
        <?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?>
    </ul>

<br style="clear: left" />
</div>

I made 3 pages (boo, boo1, boo2) at the wordpress back office and made them children of (foo), yet only foo is appearing but the children (boo, boo1, boo2) are not appearing. 我在wordpress后台制作了3页(boo,boo1,boo2),并让它们成为(foo)的子代,但仅出现了foo,但没有出现子代(boo,boo1,boo2)。 I looked it up in the wordpress codex but my problem was not solved :(. Why is the problem from? I've jquery included btw :/ 我在wordpress Codex中查了一下,但是我的问题没有解决:(。为什么是这个问题呢?我将jquery包括了btw:/

might be buggy php script. 可能是错误的PHP脚本。 use this:- 用这个:-

<ul id="myStyle">
 <? wp_list_pages('title_li=&sort_column=menu_order'); ?>

</ul>

If you are using Chrome, inspect any element, and then go to sources and see if you linked your jquery file correctly. 如果您使用的是Chrome,请检查任何元素,然后转到源并查看是否正确链接了jquery文件。 If so, all of the code will appear, and if not, nothing will appear when you attempt to read the file from the server. 如果是这样,则将显示所有代码,如果没有,则当您尝试从服务器读取文件时将不显示任何内容。

I like to use this bit of code to call up the correct url to each link to files in my header.php 我喜欢使用这段代码来调用正确的URL,以指向header.php中文件的每个链接

<?php bloginfo('template_directory'); ?>

For example: 例如:

<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.7.2.min.js"></script>

Also, what is the url to your site? 另外,您网站的网址是什么?

I think you need css fixes. 我认为您需要CSS修复。 Here is a very good article for making drop-down menu in WordPress. 这是一篇关于在WordPress中制作下拉菜单的很好的文章 Hope this will help Thanks 希望这会有所帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM