Gallery images titles – get from post

Gallery Image Caption – As Title Of The Post It’s attached To Here’s one way to do it with a custom parent_titles attribute in the native gallery shortcode. This can be achieved by setting suppress_filters to false for the gallery query and modify the posts excerpts through the the_posts filter. We can then check for … Read more

How to default all users to no link for attachments?

This is the final non-JS method that finally worked for me: Step 1: update sitewide option You can do this several ways. Since setting it is a one-time operation, I opted to update this by visiting https://www.example.com/wp-admin/options.php . I searched for “image_default_link_type” and set it to “none” (the word none, not null), then saved the … Read more

Crop image without scaling or resizing with add_image_size()

You cant do that with the add_image_size() function, after a lot of research and digging in the core files, what the Hard Crop option of the add_image_size() function actually does is resize the image using the lower dimension, then it will crop the size specified by example if you create a new image size: add_image_size( … Read more

WordPress 3.5 – Add custom image size

You can pest following code in function.php. add_theme_support(‘post-thumbnails’); add_image_size( $name, $width, $height, $crop); add_image_size(‘Home Top’, 120, 120, true); add_image_size(‘Home bottom’, 270, 90, false); add_image_size(‘Archive thumb’, 150, 75, true); add_image_size(‘Special’, 397, 224, true); add_image_size( ‘Test cropped’, 500, 500, true ); function sgr_display_image_size_names_muploader( $sizes ) { $new_sizes = array(); $added_sizes = get_intermediate_image_sizes(); foreach( $added_sizes as $key => … Read more