Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nextab/68e2dec12d7f1290f88b3f8c47b3b53f to your computer and use it in GitHub Desktop.

Select an option

Save nextab/68e2dec12d7f1290f88b3f8c47b3b53f to your computer and use it in GitHub Desktop.
Copy & Paste the code into your child theme's functions.php
// Per Filter in der functions.php den max-Wert für die Bildauflösungen im Blog-Modul anpassen:
function nxt_overwrite_divi_cropping($width) {
return 2600;
}
add_filter( 'et_pb_blog_image_width', 'nxt_overwrite_divi_cropping' );
add_filter( 'et_pb_blog_image_height', 'nxt_overwrite_divi_cropping' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment