我已经搜索了该站点,但没有找到解决方案,因此希望得到以下指导:
我在一个页面上显示一个 wordpress 文章摘录列表,每个都在它自己的 DIV 中。我将帖子标签输出到 DIV 类中。
我想要实现的是基于 DIV 类的自定义过滤器。最初打开页面时会显示所有 DIV。然后 onclick 只有所需类的 DIVS 仍然可见。这稍微复杂一些,因为大多数 DIVS 将在其类中包含多个 WP 标签。
html 的一个示例可能是:
<a href="[command to show all DIVS]">All</a>
<a href="[command to show only class 'apple']">Apples</a>
<a href="[command to show only class 'mango']">Bananas</a>
<a href="[command to show only class 'orange']">Oranges</a>
<div class="apple orange">
<h3>Post 1 Title:</h3>
<p>Post excerpt</p>
<div class="apple">
<h3>Post 1 Title:</h3>
<p>Post excerpt</p>
<div class="mango orange">
<h3>Post 1 Title:</h3>
<p>Post excerpt</p>
ETC
这可以用jquery完成吗?