通过按钮/链接触发Wordpress图像库

问题描述 投票:-3回答:1

我想在带有按钮或链接的灯箱中打开默认的Wordpress库,并隐藏页面上的库缩略图。我怎样才能做到这一点?

画廊短代码:[gallery ids="55,67"]

提前致谢。

wordpress button hyperlink gallery lightbox
1个回答
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>
© www.soinside.com 2019 - 2024. All rights reserved.