Automatically Set Image Hyperlink Functions To None On WordPress
[Normal_Box]
Set WP Automatic Image Links
WordPress by default links uploaded images to the actual image itself (or file URL), not to the page or post location the image is uploaded to. Meaning, if a visitor were to click on the uploaded image they would be directed to a page with only the image, containing similar permalink structure as: /wp-content/uploads/2012/06/ instead of using the actual page/post ID (or whatever permalink format you use).
This is great for people who use light box setups but can be messy for WordPress users who change or upload many pictures, as they will have to change the image function every time they change or upload a new image.
This WordPress code snippet below will check the value of an image link and then upgrade the image link to none each time you upload an image so you do not have to using the get_option and update_option functions.
[/Normal_Box]

[Normal_Box]
$image_set = get_option( 'image_default_link_type' ); if (!$image_set == 'none') { update_option('image_default_link_type', 'none'); }
[/Normal_Box]
Excellent stuff, worked it well.
Nice post. Well written code nothing to add to it.
Showing appreciation.