我正在编辑wordpress主题。 (这:Onetone theme) 我试图制作一些像家一样的页面看到主题不提供它(我已经联系过它们)。 所以在每个页面中我会有一些<部分>具有特定的ID和菜单,其中包含每个ID的链接。
我已经做出了证明:
<?php
$sections = array('home','A','B','C','D');// home,A,B,C,D are the ids of the section added manually
foreach ($sections as $section) {
echo '<li class="onetone-menuitem"><a class="onetone-menu-link" id="onetone-menu-'.$section.'" href="#'.$section.'" >
<span>'.$section.'</span></a></li>';
}?>
但正如您所看到的,我无法以编程方式获取这些部分的ID。 我该怎么做?感谢。
答案 0 :(得分:0)
使用jQuery提取节ID,这是一个基本的工作示例,可以帮助您入门。您可以在php或html文件中粘贴此代码,然后从浏览器中调用它。您需要进行更改的唯一方法是jquery.js
。
<!doctype html>
<head>
<script type='text/javascript' src='http://localhost/lccs/wp-includes/js/jquery/jquery.js?ver=1.11.1'></script>
<style>
.menu-item
{
display: inline-block;
padding: 1em;
background-color: #444;
}
</style>
<script language="javascript">
jQuery(document).ready(function($)
{
$("section").each(function()
{
var menucode="<span class='menu-item'><a href='#"+this.id+"'>Item</a></span>";
$("#menu-items").append(menucode);
console.log(menucode);
});
});
</script>
</head>
<body>
<main id="main" class="site-main" role="main">
<aside class="menu-aside">
<h4>Menu</h4>
<span id="menu-items"></span>
</aside>
<article class='student type-student status-publish hentry'>
</article>
</main>
<h1>Heading</h1>
<section id="seca-1"><h2>Section A</h2>
</section>
<section id="seca-2"><h2>Section B</h2>
</section>
<section id="seca-3"><h2>Section C</h2>
</section>
<section id="seca-4"><h2>Section D</h2>
</section>
</body>
</html>