如果链接到投资组合项目页面,则将Wordpress组合缩略图打开为灯箱

时间:2014-01-31 14:30:24

标签: wordpress

目前我使用的主题将每个投资组合缩略图链接到相应的投资组合项目页面。我想使用灯箱将缩略图链接到较大的图像。

目前的短代码是:

$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>';

1 个答案:

答案 0 :(得分:0)

您可以使用jQuery Colorbox Plugin来实现所需的功能

相关问题