我正在将html模板转换为wordpress。我想添加一个html图库作为自定义帖子。 在漂亮的照片中,可见图像位于链接之间,当单击图像时,该链接将作为弹出窗口打开。
我想在点击缩略图时显示完整的图像。
我的HTML
<a href="http://localhost/w-ghad/wp-content/uploads/2017/12/img_1120x750.jpg" data-rel="prettyPhoto[gallery]">
<img src="http://localhost/w-ghad/wp-content/uploads/2017/12/img_3.jpg" alt="" />
<span class="ion-plus-round"></span>
</a>
我的自定义帖子
<a href="<?php echo esc_url( get_post_meta( get_the_ID(), 'portfolio_img_large', true )); ?>" data-rel="prettyPhoto[gallery]">
<?php the_post_thumbnail(array()); ?>
<span class="ion-plus-round"></span>
</a>
错误在哪里?