Re-process Images

When you insert an image into a WordPress post, its display size is determined by the size setting you pick on the insert dialog: If your server is configured to support WordPress’s image resizing (most common hosts configure their servers so this isn’t an issue), a resized version of the image you enter should be … Read more

Removing Title Tag from Thumbnails

This filter will remove it completely from all images, you can add a conditional to only effect certain images. function remove_img_title($atts) { unset($atts[‘title’]); return $atts; } add_filter(‘wp_get_attachment_image_attributes’,’remove_img_title’); Instead if you want to use <?php the_post_thumbnail( ‘category-thumb’ ); ?> You can pass it an empty title using the second $attr so your title tag will look … Read more

WordPress resizes image to the same size as uploaded

If you are uploading images the same size as the large size in your WordPress installation, then set your Large size to 0x0 in Settings -> Media or remove this line: add_image_size( ‘large-size’, $LARGE_SIZE, 9999 ); EDIT #1: Try to add this filter to delete the original image: add_filter(‘wp_generate_attachment_metadata’, ‘delete_fullsize_image’); function delete_fullsize_image($metadata) { $upload_dir = … Read more