Reputation: 1
I'm trying to create a wallpapers site, using WordPress platform. The website should have similar functions like this wallpapers site. Which plugin is required to re-size images in multiple sizes, like 1920x1200
, or 1920x1080
. If there's no such plugin, how can I create this function in WordPress?
Upvotes: -4
Views: 3449
Reputation: 1960
You have two options for this:
Manual: Uploaded images can be edited and cropped to the required size by teh administrator. Go to the media library, find the image, click edit and make the changes necessary
Automatic: I found this page by typing "how to edit image size in wordpress" when I was, in fact, looking for a manual that would explain with screenshots the instructions in step 1 above: http://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/
The post there makes use of the add_image_size function of Wordpress and tells Wordpress to automatically generate thumbnails in your required size.
Upvotes: 1