我有这部法律在以下岗位展示所附图像:
<?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> ;
}
}
?>
但是,我不能确定光箱为什么不发挥作用! 我已经尝试了彩色箱、影子、小箱 p等......它只是没有负荷。 当你点击图像时,它就在网页上打开。
什么是错了?