0

我正在使用“高级自定义字段”,并且我创建了一个存档页面来显示来自自定义帖子类型“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>

我想知道我需要在标签中放入什么代码才能链接到每个图像关联的帖子?

4

1 回答 1

1

试试这个

  <div class="photoframe">
       <a href="<?php the_permalink(); ?>"><img class="responsive" src="<?php the_field('property_image')?>" /></a>
  </div>
于 2013-10-23T16:48:47.050 回答