WordPress菜单中间的图像

时间:2016-07-25 01:37:14

标签: wordpress wordpress-theming

我正在尝试创建一个菜单,其中间会有一个图像。例如左边的三个链接&在图像右侧三个,每个菜单项也必须列出所有子页面。

父级菜单项必须根据CMS中输入的内容动态更新文本,但用户无需重新排序或添加/删除菜单中的项目。

进行上述操作的最佳方式是什么?我最初的想法是对所有页面进行硬编码。使用get_permalink()来获取他们更改的URL包,但这不会考虑上面列出的所有要求。

1 个答案:

答案 0 :(得分:1)

这是你想要的答案。有关详细信息,请访问链接

在下面的示例中,徽标位于ul类之外,但您也可以在li类之间设置徽标。菜单中间的徽标。

HTML

<div id="header">
  <a class="logo" href="index.html"><img src="http://i48.tinypic.com/2mob6nb.png" alt="Michigan State" /></a>
  <ul>
    <li><a href="index.html">Home</a></li>
    <li><a href="index.html">Stats</a></li>
    <li><a href="index.html">Schedule</a></li>
    <li><a href="index.html">Store</a></li>
    <li><a href="index.html">Gallery</a></li>
    <li><a href="index.html">Roster</a></li>
  </ul>
</div><!--end header-->

CSS

body {  
  font-family: Helvetica, Arial, Century;
  font-size: 12px;
  margin: 0;
  background: url('images/bluebg.jpg') repeat-x top center;
}


#header {
  background-color: #ffd727;
  height: 40px;
  position: relative;
  margin: 150px auto 0;
}


#header ul {
  margin: 0 auto;
  width: 800px;
  padding: 0;
  list-style: none;
}

#header ul li {
  float: left;
  width: 97px;
}

#header ul li:nth-of-type(4) {
  margin-left: 217px;
}

#header ul li a {
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 12px 0 0 0;
  height: 28px;
}

#header ul li a:hover {
  background: rgb(235,200,35);
}

.logo {
  position: absolute;
  left: 50%;
  margin: -48px 0 0 -108px;
}


@media screen and (max-width: 800px) {
  .logo {
    bottom: 100%;
  }

  #header ul li:nth-of-type(4) {
    margin-left: 0;
  }

  #header ul {
    width: 600px;
    position: relative;
  }
}

对于JS - 请参阅下面的链接

http://codepen.io/wolfcry911/pen/HyLdg

方法2

你也可以用左右不同的菜单来做..但方法1最适合wp

http://foundation.zurb.com/forum/posts/1832-logo-centered-in-top-bar