如何在WordPress中获取图像URL?

时间:2014-06-25 13:06:09

标签: php wordpress

我正在使用此代码将所有图片上传到页面并且它工作正常但我想使用图片网址获取灯箱功能,目前我正在获取img个对象。有什么方法可以让我特意获得图片网址吗?我想它是阵列的一部分。这是我正在使用的代码:

<?php
    $images = get_children( array(
    'post_parent' => $post->ID, 
    'post_type' => 'attachment', 
    'post_mime_type' => 'image', 
    'orderby' => 'menu_order', 
    'order' => 'ASC', 
    'numberposts' => 999 ) ); 
    if ( $images ) { 
        //looping through the images
        foreach ( $images as $attachment_id => $attachment ) {
        ?>
<li>
<a href="*the_img_url*" data-lightbox="lightbox-1" data-title="<?php echo $attachment->post_excerpt; ?>" ><?php echo wp_get_attachment_image( $attachment_id, 'full' ); ?>
</a>
</li>
<?php
}
}
?>

谢谢。

1 个答案:

答案 0 :(得分:1)

你试过吗

<?php echo wp_get_attachment_url( $attachment_id ); ?>  
// $attachment_id is  The ID of the desired attachment