通过 Button/Link 触发 Wordpress 图片库

Trigger Wordpress Image Gallery Via Button/Link

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

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

提前致谢。

你可以这样试试

<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>