目前我使用的主题将每个投资组合缩略图链接到相应的投资组合项目页面。我想使用灯箱将缩略图链接到较大的图像。
目前的短代码是:
$output .= '<li>';
$output .= '<a href="'. get_permalink() .'">';
$output .= get_the_post_thumbnail( null, 'portfolio-item', array('class'=>'scale-with-grid' ) );
$output .= '<div>';
$output .= '<span class="ico"><i class="icon-search"></i></span>';
$output .= '<h6>'. the_title(false, false, false) .'</h6>';
$output .= '</div>';
$output .= '</a>';
$output .= '</li>';