This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Set Maximum Execution Time - To Avoid Execution | |
ini_set('max_execution_time', 0); | |
//Load WordPress | |
require_once("wp-load.php"); // Include the class_alias() | |
require_once(ABSPATH . 'wp-admin/includes/taxonomy.php'); | |
include 'excel_reader/excel_reader.php'; // Include the class | |
$excel = new PhpExcelReader; // Creates object instance of the class | |
$excel->read('import/import.xls'); // Reads and stores the excel file data | |
//Define Variable |