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

时间:2018-01-02 21:27:18

标签: wordpress button hyperlink gallery lightbox

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

图库短代码:[gallery ids="55,67"]

提前致谢。

1 个答案:

答案 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>
相关问题