Hi I have been reading about custom image sizes. https://premium.wpmudev.org/blog/adding-custom-images-sizes-wordpress/
How do I write the php code for the x pro child theme
Hi I have been reading about custom image sizes. https://premium.wpmudev.org/blog/adding-custom-images-sizes-wordpress/
How do I write the php code for the x pro child theme
Hello There,
Thanks for writing in!
If you want to add a new image size, since the child theme is set up, you can simply add the following code in your child theme’s functions.php file
add_image_size( 'new-custom-size', 1200, 999, false );
You can edit the file in Appearance > Editor. Just make sure that you have selected the functions.php file.
Thanks 
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.