这是一个相当广泛的问题,因为根据您的具体需求,有多种解决方案。我的方法可能包括:
在每次迭代中,使用wp\\u get\\u attachment\\u image\\u src(get\\u post\\u thumbnail\\u id(post->id),“large”)抓取特征图像构建一个无序的图像列表,使用一个与UL列表项一起工作的插件生成一个具有所需功能的幻灯片,差不多就是这样。无法对此进行测试,但最终可能会出现以下情况:
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) {
echo \'<div class="flexslider"><ul class="slides">\';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li><img src="\' . wp_get_attachment_image_src( get_post_thumbnail_id( post->ID ), \'large\' ) . \'" /></li>\';
}
echo \'</ul></div>\';
}
然后使用maybe
Flexslider2