芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/critterchoice.com/wp-content/plugins/wp-automatic/p_bulk_action_add_export.php
prefix; // Perform custom action on selected posts $campaigns = array(); //array to hold the campaigns data foreach ($post_ids as $post_id) { //get the campaign record from db table wp_automatic_campaigns $campaign = $wpdb->get_row("select * from {$prefix}automatic_camps where camp_id = $post_id"); //add the campaign to the campaigns array $campaigns[] = $campaign; } //return a json file for download $json = json_encode($campaigns); $now = date('Y-m-d-H-i-s'); $filename = 'wp_automatic_export_'.$now.'.json'; header('Content-Type: application/json'); header('Content-Disposition: attachment; filename="' . $filename . '"'); header('Pragma: no-cache'); header('Expires: 0'); echo $json; exit; } ?>