Add Additional Media Settings
-
Hello
I think that there are a couple of options which any WP admin should be able to togle easy from (Settings > Media) without applying custom codes and plugins, the functions which are essential.1 – disable/enable lazy loading.
2 – disable/enable scalled image.
3 – disable/enable override files with same name on upload.Also there is a forth option but not sure how to describe it, it throws a error when uploading images, the image is uploaded but i must refresh draft post to be able to see it in media so i can add the image into post.
I have to add this code to solve it, the code i have found here somewhere in a topic.
function use_gd_editor($array) { return array( 'WP_Image_Editor_GD', ); } add_filter( 'wp_image_editors', 'use_gd_editor' );Additionally when i upload big images some of them are black in media around 70% and 30% is visible, but in the post it is fine, could be related with all this codes.
That’s all, thank you for any input.
P.s. i hope someday WP will work out of the box, without the need to add custom codes and a bunch of plugins.
The topic ‘Add Additional Media Settings’ is closed to new replies.