Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // If you face any issue with Importing Demo Content
- // Add this on the functions.php
- // https://fahimm.com
- function wpb_image_editor_default_to_gd( $editors ) {
- $gd_editor = 'WP_Image_Editor_GD';
- $editors = array_diff( $editors, array( $gd_editor ) );
- array_unshift( $editors, $gd_editor );
- return $editors;
- }
- add_filter( 'wp_image_editors', 'wpb_image_editor_default_to_gd' );
Add Comment
Please, Sign In to add comment