Support

Account

Home Forums General Issues Image link to attachment page Reply To: Image link to attachment page

  • Yeah, thanks, I saw that but it still isn’t working, it sends me to the current page…

    I don’t know how to write the code right.
    Here’s my code and I want to go the attachment page (the single page). Do you have an idea what can I do?
    Thank you very much`

    <?php 
    
    $images = get_field('galerie_bd');
    
    if( $images ): ?>
    <ul class="rslides">
            <?php foreach( $images as $image ): ?>
                <li>
                    <a href="<?php echo $image['url']; ?>">
                         <img src="<?php echo $image['url']; ? />" />
                    </a>
                                </li>
            <?php endforeach; ?>
        </ul>
    <?php endif; ?>