我正在使用'高级自定义字段',我创建了一个存档页面,用于显示自定义帖子类型'property_sales'的帖子
这是完整的模板
<article <?php post_class(); ?>>
<header>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</header>
<div class="location">
<?php the_field('location')?>
</div>
<div class="photoframe">
<a href="sales"><img class="responsive" src="<?php the_field('property_image')?>" /></a>
</div>
<div class="price">£
<?php the_field('price')?>
</div>
<div class="entry-summary">
<p>Added on <?php get_template_part('templates/property-meta'); ?></p>
</div>
<div class="rightmovelink">
<a href="<?php the_field('link')?>" target="_new">View Full Listing</a>
</div>
<div class="clear">
</article>
我想知道我需要在标签中添加什么代码才能链接到每个图像所关联的帖子?
答案 0 :(得分:1)
试试这个
<div class="photoframe">
<a href="<?php the_permalink(); ?>"><img class="responsive" src="<?php the_field('property_image')?>" /></a>
</div>