我有一个页面,如果你点击它在灯箱中打开的图像,我希望它是这样的,如果点击图像,它会转到一个单独的URL。
现在,您可以使用媒体链接'在Wordpress中,但使用的主题已经覆盖了它的工作。什么是我解决这个问题的最佳方式我已经测试过并尝试了它应该使用媒体链接的方式,但我需要使用自定义画廊,但这会消除媒体链接和力量使用灯箱。
示例:
点击此页面中的图片 - http://wp.themedemo.co/whizz/home-full-gallery/会打开灯箱而我希望它转到这样的图库 - http://wp.themedemo.co/whizz/home-minimal-gallery/
谢谢!
答案 0 :(得分:0)
到目前为止,我有这个 -
function whizz_enqueue_scripts() {
// if this is not the contact page, remove the script
if( ! is_page(2638) ){
wp_dequeue_script( 'fancybox' );
}
}
// adjust priority to make sure this runs after the plugins add their scripts/styles
add_action( 'wp_enqueue_scripts', 'whizz_enqueue_scripts', 100 );