我有这段代码在帖子上显示附加的图片:
<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID,
'exclude' => get_post_thumbnail_id()
);
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo '<a href="';
echo wp_get_attachment_url( $attachment->ID );
echo '" rel="lightbox">';
echo wp_get_attachment_image( $attachment->ID, 'large' );
echo '</a>';
}
}
?>
但是我无法理解为什么Lightbox不工作!我已经尝试过colorbox,shadowbox,ligthbox插件等......它只是不加载。当您单击图像时,它只会在页面中打开。
我做错了什么?
答案 0 :(得分:0)
查看您的主题是否
wp_head();
在您的标头文件和
中wp_footer();
在您的页脚文件中,如果您错过了这个插件,插件将无效。