我在修改wordpress主题时遇到了这个问题。 我正在显示电影信息的帖子查询。使用while,因此我有一个链接来调用包含每部电影预告片的div。但是,当我点击任何链接时,它只打开第一部电影的预告片。意思是,我必须迭代低谷ID以获得每个帖子/电影的唯一ID,并且这个迭代应该在a href和div id中完成。
<?php query_posts( $args ); ?><?php while ( have_posts() ) : the_post(); ?>
<a href="#modal">Trailer</a>
<div id="modal" class="modalmask">
<?php /* i call trailer iframe */ ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
¿我该怎么做? 感谢。
答案 0 :(得分:0)
试试这个。
<?php query_posts( $args ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<a href="#modal-<?php echo get_the_ID(); ?>">Trailer</a>
<div id="modal-<?php echo get_the_ID(); ?>" class="modalmask">
<?php /* i call trailer iframe */ ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>