I want to edit documents on my blog without the need to download and upload files again [closed]

Based on your comments on your question and the comment on Viruthagiri’s answer, you want to edit your documents and attachments using WordPress. I’m afraid WordPress doesn’t offer a feature to edit documents and images using their backend. The only thing I can say is to either use an FTP client (WinSCP [free] is a … Read more

Attachment page custom title?

I believe that attachment.php is the template for attachment pages. So you can edit existing one or create new if you have none. You can also create different templates for different mime types: http://codex.wordpress.org/Template_Hierarchy Edit: Sorry, in a case you want to change HTML page title, you may want to use is_attachment() in header.php of … Read more

Gallery Thumbnail Layout Template

One of the better approaches is to unregister WP’s default gallery shortcode function, and add your own customized replacement. WP engineer has a great post about it here. This also will let you fix that funky inline CSS that the default gallery adds to the page.

get_image_tag filter not working

Turned out my “answer” was that I didn’t really understand “get_image_tag.” It only runs when you first insert an image. I was thinking that it ran every time the edit interface was loaded. From researching and talking with others, it seems the only way to get the metabox data onto existing images is some kind … Read more