• I really want to link my gallery images to webpages instead of the full size images or attachment pages. Any time I try to change the link URL it defaults back to the link to the image. Anyone know how to do this?

Viewing 1 replies (of 1 total)
  • Edit media.php in the wp-includes directory.

    $link = wp_get_attachment_link($id, $size, true);

    change it to:

    $link = wp_get_attachment_link($id, $size, false);

    It should work! Let me know if that worked for you.

Viewing 1 replies (of 1 total)
  • The topic ‘How do I link gallery images to web pages?’ is closed to new replies.