我在标题中排队jquery-ui-accordion
,并包含以下功能来激活它:
$(function() {
$( "#accordion" ).accordion();
});
下面是如何设置html。输出只是没有任何手风琴功能的常规 WordPress 帖子列表。我想要它,以便标题变得可点击。有人可以帮我弄清楚我做错了什么吗?
<?php get_header();?>
<section id="content">
<h2>Our Latest Videos</h2>
<section id="latest-videos" class="video-archive">
<section id="accordion">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="entry" id="post-<?php the_ID(); ?>">
<section class="description">
<h3><?php the_title(); ?></h3>
<div>
test test test
</div>
</section>
</article>
<?php endwhile; ?>
<?php endif; ?>
</section>
</section>
</section>
<?php get_sidebar(); ?>
<?php get_footer(); ?>