fahimmurshed

Astra Starter Templates Demo Data Failed

Apr 30th, 2020 (edited)
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. // If you face any issue with Importing Demo Content
  2. // Add this on the functions.php
  3. // https://fahimm.com
  4. function wpb_image_editor_default_to_gd( $editors ) {
  5.     $gd_editor = 'WP_Image_Editor_GD';
  6.     $editors = array_diff( $editors, array( $gd_editor ) );
  7.     array_unshift( $editors, $gd_editor );
  8.     return $editors;
  9.     }
  10.     add_filter( 'wp_image_editors', 'wpb_image_editor_default_to_gd' );
Add Comment
Please, Sign In to add comment