How can I get the image url in WordPress?

前端 未结 1 1740
遥遥无期
遥遥无期 2021-01-28 00:48

I\'m using this code to get all images uploaded to a page and it\'s working fine but I\'d like to use the image urls for a lightbox function and currently I\'m getting an

相关标签:
1条回答
  • 2021-01-28 01:22

    Have you tried

    <?php echo wp_get_attachment_url( $attachment_id ); ?>  
    // $attachment_id is  The ID of the desired attachment 
    
    0 讨论(0)
提交回复
热议问题