I'd like to insert a large infographics image into a post. The problem is that WordPress scales the image and applies a limit of 393px in my case.
When I try to manually increase it, a red exclamation mark shows up, and won't use the value given by me:
How to remove that limit?
I'd like to insert a large infographics image into a post. The problem is that WordPress scales the image and applies a limit of 393px in my case.
When I try to manually increase it, a red exclamation mark shows up, and won't use the value given by me:
How to remove that limit?
Share Improve this question edited Aug 25, 2020 at 19:58 haxpanel asked Aug 24, 2020 at 16:10 haxpanelhaxpanel 15710 bronze badges1 Answer
Reset to default 2Found the solution: It can be turned off:
add_filter( 'big_image_size_threshold', '__return_false' );
More: here