All-in-One WP Migration Folders Excluder

Folder(s) name to exclude:

Please add the name of folder(s) that you want to exlude. Example "Updraft,WP-Backup" (without quote).

Note: Please do not add any space before or after comma.

"; echo "
"; echo "

Excluded folders list :

"; $string = esc_attr( get_option( 'folderpathx' )); $array = explode(',', $string); $fcount = 1; foreach ($array as $line) { echo $fcount; echo '. '; echo $line; echo "
"; $fcount++; }; echo "

Made by Zeeshanx

"; } else { echo "
All-in-One WP Migration is not active. Please install/activate it to get this plugin working.
"; } } // Load Styles function aoi_ex_load_styles(){ wp_register_style( 'ai1styles', plugin_dir_url( __FILE__ ) . 'assets/css/style.css', false, 'v.2.0' ); wp_enqueue_style( 'ai1styles' ); } add_action( 'admin_enqueue_scripts', 'aoi_ex_load_styles' ); add_filter( 'ai1wm_exclude_content_from_export', function( $exclude ) { $string = esc_attr( get_option( 'folderpathx' )); $array = explode(',', $string); foreach ($array as $line) { $exclude[] = $line; }; return $exclude; } );