有没有人能够使用fancyBox在WordPress循环中打开帖子缩略图?到目前为止,这是我的代码:
<?php
$query = new WP_query( 'pagename=about');
//The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
echo '<aside class="clear flex-container">';
echo '<div class="about">';
echo '<figure class="about-thumb">';
echo '<a href="#" class="fancybox-thumb" rel="fancybox- thumb">';
the_post_thumbnail('medium');
echo '</a>';
echo '</figure>';
echo '<div class="about-entry-content">';
the_content();
echo '</div>';
echo '</div>';
echo '</aside>';
}
}
/* Restore original Post Data */
wp_reset_postdata();
?>
我一直无法找到答案。任何帮助赞赏。谢谢。