• Hi, I have uploaded hundreds of images in my WP. Is it possible that I could crop the existing images in my WP?

    I used this code to crop images but it only applies if new uploaded images.

    function my_custom_sizes( $sizes ) {
        return array_merge( $sizes, array(
            'gallery-image' => __('gallery-image'),
    		'portfoliopin-item' => __('portfoliopin-item'),
        ) );
    }
    if ( function_exists( 'add_image_size' ) ) {
    	add_image_size( 'gallery-image', 588, 402, true );
    }

    does anyone have an idea about my case? thanks in advance ….

  • The topic ‘How to crop Existing images in WP’ is closed to new replies.