You can simply remove that limit, go to your functions.php
and add this code.
function remove_max_srcset_image_width( $max_width ) {
return false;
}
add_filter( 'max_srcset_image_width', 'remove_max_srcset_image_width' );
If you want to increase, go to your functions.php
and add this code.
function custom_max_srcset_image_width( $max_width, $size_array ) {
$max_width = 1800;
return $max_width;
}
add_filter( 'max_srcset_image_width', 'custom_max_srcset_image_width');
Related Posts:
- How can I set image sizes and still have responsive images using the srcset attribute?
- Featured Image in 4.4 should be larger on mobile device
- How to use the responsive images feature from WP 4.4 in your themes
- Responsive Images – crop don’t seem to work
- Custom image size vs CSS sizing
- Change Image Sizes for Mobile Theme
- Responsive Images with art direction
- WordPress Theme Preview Image
- The the_post_thumbnail without srcset?
- Get the first image from post content (eg.: hotlinked images)
- How to modify an image block in Gutenberg WordPress 5?
- Add default Backgrounds
- Edit srcset and sizes attributes in Gutenberg image, cover and gallery – blocks
- wp_get_attachment_image_attributes not working for me
- Specify image dimensions
- Excess White Space Above Admin Bar on Frontend Using Twitter Bootstrap
- add_image_size is scaling, even though crop is set to true
- Confused about image sizing business in WordPress
- Unexpected width and srcset attributes for the_post_thumbnail();
- How do I get gallery thumbnail URL and change the default thumbnail size?
- Responsive class to all the images in the content
- How wordpress handle upload images and how to use them in the code
- Replace Home with image link inside custom header menu
- Featured Image Size
- How to set dimensions of the post thumbnails (featured images)
- Cannot get full thumbnail size using the_post_thumbnail
- wp_get_attachment_image_src() width and height boolean
- What tags should be used for themes to show the type of layout?
- A mystery 300px image size
- Meta tag viewport
- Can’t show custom post thumbnail sizes as background images
- Custom Field returning Numerical Value for Image rather than URL
- How to make wordpress theme iframe responsive
- Why an arugment is missing in wp_get_attachment_image_attributes?
- Reasons why all thumbnail sizes aren’t working
- How to make a local cache of mshots images
- How do I Add images uploaded in the post to a default custom field
- attachment.php code or tutorial
- Change “Thumbnail”, “Medium” and “Large” image sizes using functions.php?
- image url relative path not working in css file
- Default image size not working
- WordPress Media Uploader in page template (On Front-end)
- How do I include pre-installed images in a theme?
- Inserting images in multiple posts native gallery
- Can I get the ID of an inserted / linked image?
- Add attachment for all images in post
- Changing Header Image Every N Minutes/Seconds
- Do not display post images on front page
- What is the meaning of WordPress’s recommended css classes and where are they applied?
- Gallery thumbnails very small
- Getting Different Size Of Attachment Images
- How to show a manageable list of images on a post?
- How To Pick Custom Size Of Uploaded Image In Theme Via the_post_thumbnail();?
- Change image size depending on page
- How to disable thumbnail filter for a specific template part or image size?
- How to obfuscate theme directory URLs
- Are seven additional image sizes are too many?
- Remove link on full-size images
- how to retrieve the image title for image Post Format
- Theme logo metadata into template file
- How to fix WordPress images not showing up in local hosted XAMPP server?
- Stop WordPress from showing images on non post pages
- How to make excerpt image be full size instead of thumbnail?
- How to add cropped custom header image?
- Is there a way to serve different resolution images to different devices?
- How can I scale down the width of images in bulk that are embedded in posts throughout the site?
- Add image URL automatically to custom field?
- Dynamic Image Links Depending on Excerpt/’Single Post’ View
- Designing a custom archive.php inspired by the Autofocus theme
- WordPress Animation Adjustments
- theme directory fallback image outputs url and not the image
- Post Featured Image Custom Sizing?
- Image cropping isn’t working correctly when using Offload Media
- How to add an image to a theme page template in code?
- add class to all images inside the content
- Menu is in Reversed order
- Customizer Image-Picker Preview Not Working
- Uncaught Reference error in Retina.js
- Should I detect the device or the page first?
- Can’t upload images on new theme
- Images use & location, on new wordpress theme
- image sizes – finding and removing
- Adding a Class to an Getting From Post Content
- Create image with imagepng() (fails at header)
- FitVid not working for iframes on particular theme install
- How do I keep images in posts below a certain size without editing the post?
- Any disadvandages if I style the wordpress align classes without img and .wp-caption prefix
- the_post_thumbnail fetches wrong image
- Set start page depending on screen width [closed]
- Custom image size doesn’t work
- Retina ready for uploaded images which are cropped
- Add rel to all images in a post
- How to resize video lightbox popup in wordpress? [closed]
- Elementor Pro and Astra have different breakpoints – how to salvage?
- How can I add a single image from a gallery into the page header?
- Isotope overlapping .items because of featured images – HELP! [closed]
- Correct way to make a custom block theme responsive
- Custom Theme functions.php – Using add_settings_field and input type=”file” to set custom logo
- How do I work with responsive images in WordPress? (img srcset/sizes)
- I want to resize post featured image without cropping image. How?