我想在带有按钮或链接的灯箱中打开默认的Wordpress图库,并隐藏页面上的图库缩略图。我怎样才能做到这一点?
图库短代码:[gallery ids="55,67"]
提前致谢。
答案 0 :(得分:0)
你可以这样试试。
<style>
.hiddengallery{
display:none;
}
</style>
<button class="showgallery" >click here</button>
<div class="hiddengallery">
// add lightbox code here
<?php echo do_shortcode('[gallery ids="55,67"]');?>
</div>
<script>
jQuery(document).on("click",".showgallery", function (){
jQuery(".hiddengallery").show();
});
</script>