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 | |
/* | |
* Stick this in your functions.php, or include it from a separate file, | |
* edit the post types you want to export, | |
* then use the URL: http://your-blog.com/?_inventory=1 | |
* | |
*/ | |
function return_csv_download($array_data, $filename){ | |
header('Content-Type: text/csv'); // you can change this based on the file type |
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 | |
/* | |
* Stick this in your functions.php, or include it from a separate file, | |
* edit the post types you want to export, | |
* then use the URL: http://your-blog.com/?_inventory=1 | |
* | |
*/ | |
function return_csv_download($array_data, $filename){ | |
header('Content-Type: text/csv'); // you can change this based on the file type |
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 | |
/** | |
* == About this Gist == | |
* | |
* Code to add to wp-config.php to enhance information available for debugging. | |
* | |
* You would typically add this code below the database, language and salt settings | |
* | |
* Oh.. and *do* make sure you change the path to the log file to a proper file path on your server (make sure it exists). | |
* |