Is there a way to disable image attachment links trought a filter in functions.php or something ? I know it’s possible to do it manually when you add an image to a post but I want to disable this functionality by default.
UPDATE
What I want to do is set the “Link URL” option to “none” and remove / hide it from the upload attachement screen.
Is there a solution to hook into the “media-upload” “pop-in” ?
Thanks by advance.
If anybody is interested in do the trick, my solution is this:
Go to-> http://yourblog.com/wp-admin/options.php
Search for: image_default_link_type
Change Value to: none (available options are
none
,file
[links to the file itself],post
[links to the post the image is related to],attachment
[links to the attachment page with the image on it])or set it in your functions.php via (same options available as mentioned above)
There is a plugin to solve this called “Remove Link URL” and it removes the link by default, still allowing it to be added in if you click the button. I believe this fixes the problem you’re describing 🙂
screenshot-1.png?r=494378 http://img208.imageshack.us/img208/56/screenshot1vk.png
I think you would have to edit the loop-attachment.php in your theme, specifically lines 50-61:
Pretty sure commenting out this whole block will achieve what you want. Haven’t tested it myself though.
In functions.php or likewise file:
Here is the basic php function that you would need to insert into your theme’s functions.php file:
This will remove the ‘attachment/name-of-image-file’ part from the URL making it link to the post’s permalink itself.