I have a huge problem with my Wordpress. My uploaded images don\'t list in the Media Library.
It is weird tho, it says I have 75 images, but display none. Take a loo
Here's something a guy on Wordpress forum showed us. Add the following to your functions.php file. (remember to create a backup of your functions.php first)
add_filter( 'wp_image_editors', 'change_graphic_lib' );
function change_graphic_lib($array) {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}
...it was that simple.