我使用codrops解决方案在不断扩展的网格中展示团队成员:http://tympanus.net/codrops/2013/03/19/thumbnail-grid-with-expanding-preview/
我已经能够更改一些代码以在网格预览中显示我的帖子缩略图。但是,我想在展开视图中以完整尺寸显示相同的图片。在原始版本中,它在名为1.jpg的文件中抓取图像。如何抓住我的缩略图?
这是我的PHP / HTML:
<ul id="og-grid" class="og-grid">
<?php $args = array( 'post_type' => 'mitarbeiter');
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<li>
<a href="mailto:<?php the_field('email')?>" data-largesrc="images/1.jpg" data-title="<?php the_title(); ?>" data-description="<?php the_field('funktion') ?><br /><br />Rufen Sie mich an unter <?php the_field('telefonnummer')?> oder schreiben Sie mir eine Nachricht.">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('team');
}
else { } ?>
</a>
<?php the_title(); ?>
</li>
<?php endwhile; ?>
原始CSS只是略微改变以符合我的需求:https://github.com/codrops/ThumbnailGridExpandingPreview/blob/master/css/component.css
原始JS没有变化:https://github.com/codrops/ThumbnailGridExpandingPreview/blob/master/js/grid.js
答案 0 :(得分:0)
请查看您的代码:
data-largesrc="images/1.jpg"
将其更改为缩略图网址。