在一个带有侧栏手风琴的网站中有两个部分。它也是具有内页面的可点击链接。但是在详细信息页面中未正确选择手风琴选择。有谁知道解决方案?
<div id="collapseOne" class="panel-collapse collapse in">
<div class="list-group">
<?php $args = array( 'posts_per_page' => -1, 'post_type' => 'test', 'order'=> 'ASC' );
query_posts($args);
if ( have_posts() ) :
while (have_posts()) : the_post(); ?>
<a class="list-group-item" style="padding-left:30px !important;" href="<?php the_permalink(); ?>">
<p><?php the_title(); ?></p>
</a>
<?php endwhile;
endif; ?>
<?php wp_reset_query(); ?>
</div>
</div>