wordbox效果对wordpress后附加图像

时间:2012-04-17 20:14:11

标签: wordpress function wordpress-plugin lightbox

我有这段代码在帖子上显示附加的图片:

<?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插件等......它只是不加载。当您单击图像时,它只会在页面中打开。

我做错了什么?

1 个答案:

答案 0 :(得分:0)

查看您的主题是否

wp_head();

在您的标头文件和

wp_footer();

在您的页脚文件中,如果您错过了这个插件,插件将无效。