我在转发器领域实施了一个画廊。每当我在管理员的转发器字段中更新或插入新数据时,都会在' wp_posts'中创建新行。表。我还需要每个图库的详细信息页面,其中将显示更多图像。我没有获得每个重复图库的帖子ID。如果我知道问题将会解决。
我的编码如下..
<?php
$content_group = get_field('content_group');
if( have_rows('content_group') ):
$i = 1;
$numrows = count( get_field( 'content_group' ) );
while( have_rows('content_group') ): the_row();
?>
<?php
$images = get_sub_field('gallery');
if(!empty($images) && isset($images)){
foreach($images as $img){
?>
<img src="<?php echo $img['sizes']['thumbnail'];?>" alt="" />
<?php
}
?>
<a class="clickherebt" href="<?php echo get_site_url(); ?>/all-details/?id="><i class="fa fa-caret-right"></i> Click here to view photos from event</a>
// Want to pass post id within the link
<?php
}
?>
<?php endwhile;
endif;
?>