Skip to content

Instantly share code, notes, and snippets.

View rajilesh's full-sized avatar
🏠
Working from home

Rajilesh Panoli rajilesh

🏠
Working from home
View GitHub Profile
@rajilesh
rajilesh / functions.php
Created November 8, 2016 08:25
For fixing http error while uploading in wordpress
// to fix http error in wordpress media uploads
add_filter( 'wp_image_editors', 'change_graphic_library' );
function change_graphic_library($array) {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}