WordPress Image attachment size

 

WordPress Image attachment size

In Wordpress, default Height / Width for image uploaded (from admin) in single page is 400×300 px !

If u want more:

Open file /wp-includes/post-template.php

find function: prepend_attachment($content)

and modify this:

get_the_attachment_link(false, true, array(400, 300));

with this:

get_the_attachment_link(false, true, array(600, 400));

DONE.

For now all image will have default max Width = 600 and Height = 400 (in single page)!

(ByREV)


Post a Comment