Changeset 3389458
- Timestamp:
- 11/04/2025 09:01:18 AM (4 months ago)
- Location:
- wp-ultimate-exporter
- Files:
-
- 30 added
- 3 edited
-
tags/2.18 (added)
-
tags/2.18/License.txt (added)
-
tags/2.18/Plugin.php (added)
-
tags/2.18/Readme.txt (added)
-
tags/2.18/SmackExporterInstall.php (added)
-
tags/2.18/exportExtensions (added)
-
tags/2.18/exportExtensions/CustomerReviewsExport.php (added)
-
tags/2.18/exportExtensions/ElementorExport.php (added)
-
tags/2.18/exportExtensions/ExportExtension.php (added)
-
tags/2.18/exportExtensions/ExportHandler.php (added)
-
tags/2.18/exportExtensions/JetBookingExport.php (added)
-
tags/2.18/exportExtensions/JetCustomTableExport.php (added)
-
tags/2.18/exportExtensions/JetEngine.php (added)
-
tags/2.18/exportExtensions/JetReviewsExport.php (added)
-
tags/2.18/exportExtensions/LearnPress.php (added)
-
tags/2.18/exportExtensions/MetaBox.php (added)
-
tags/2.18/exportExtensions/PostExport.php (added)
-
tags/2.18/exportExtensions/WPQueryExport.php (added)
-
tags/2.18/exportExtensions/WooComExport.php (added)
-
tags/2.18/screenshot-1.png (added)
-
tags/2.18/screenshot-2.png (added)
-
tags/2.18/screenshot-3.png (added)
-
tags/2.18/screenshot-4.png (added)
-
tags/2.18/screenshot-5.png (added)
-
tags/2.18/screenshot-6.png (added)
-
tags/2.18/screenshot-7.png (added)
-
tags/2.18/screenshot-8.png (added)
-
tags/2.18/wp-exp-hooks.php (added)
-
tags/2.18/wp-ultimate-exporter.md (added)
-
tags/2.18/wp-ultimate-exporter.php (added)
-
trunk/Readme.txt (modified) (5 diffs)
-
trunk/exportExtensions/ExportExtension.php (modified) (1 diff)
-
trunk/wp-ultimate-exporter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-ultimate-exporter/trunk/Readme.txt
r3346878 r3389458 1 === Export All Posts, Products, Orders, Refunds & Users ===1 === Export All Posts, Products, Orders, Refunds & Users === 2 2 Contributors: smackcoders, riswanasmack, premairuthayarajan 3 3 Donate link: https://www.paypal.me/smackcoders … … 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 2.1 7.19 Version: 2.1 7.18 Stable tag: 2.18 9 Version: 2.18 10 10 Author URI: https://www.smackcoders.com/wp-ultimate-csv-importer-pro.html 11 11 License: GPLv2 or later … … 226 226 No, there is no limitation on the number of records you can export. 227 227 228 = 8. What is export_wp and how Can I use it? =228 = 8. What is export_wp and how can I use it? = 229 229 230 230 export_wp is a function for WordPress that generates the WXR export file for download. By default, this function can export all the content for post types with the can_export argument enabled and skip posts with ‘auto-draft’ status. … … 411 411 412 412 == Changelog == 413 414 = 2.18 = 415 416 * Added: Support for Slim SEO plugin data export 417 * Fixed: Minor bugs 413 418 414 419 = 2.17.1 = … … 857 862 == Upgrade Notice == 858 863 859 = 2.1 7=860 861 Upgrade now to export ACF advanced fields like date picker, time, datetime, etc., introduced in this new release.862 864 = 2.18 = 865 866 Upgrade to version 2.18 to export Slim SEO plugin data with ease and enjoy a smoother experience with a few minor bug fixes. 867 -
wp-ultimate-exporter/trunk/exportExtensions/ExportExtension.php
r3288286 r3389458 2935 2935 $rowValue[$key] = $this->returnMetaValueAsCustomerInput($rowValue['wpcr3_' . $key], $hKey); 2936 2936 } 2937 else if (is_plugin_active('slim-seo/slim-seo.php')) { 2938 2939 $slimseo_keys = ['title','description','canonical','noindex','nofollow','redirect','facebook_image','twitter_image']; 2940 2941 if (in_array($key, $slimseo_keys)) { 2942 2943 $slim_seo_meta = get_post_meta($recordId, 'slim_seo', true); 2944 2945 if (empty($slim_seo_meta)) { 2946 $rowValue[$key] = ''; 2947 } else { 2948 if (is_serialized($slim_seo_meta)) { 2949 $slim_seo_meta = maybe_unserialize($slim_seo_meta); 2950 } 2951 2952 if (in_array($key, ['facebook_image','twitter_image']) && is_array($slim_seo_meta[$key])) { 2953 $rowValue[$key] = isset($slim_seo_meta[$key]['url']) ? $slim_seo_meta[$key]['url'] : ''; 2954 } else { 2955 $rowValue[$key] = isset($slim_seo_meta[$key]) ? $slim_seo_meta[$key] : ''; 2956 } 2957 2958 } 2959 2960 $result[$recordId][$key] = $rowValue[$key]; 2961 continue; 2962 } 2963 } 2964 2937 2965 else 2938 2966 { -
wp-ultimate-exporter/trunk/wp-ultimate-exporter.php
r3346878 r3389458 11 11 * @wordpress-plugin 12 12 * Plugin Name: WP Ultimate Exporter 13 * Version: 2.1 7.113 * Version: 2.18 14 14 * Plugin URI: https://www.smackcoders.com/ultimate-exporter.html 15 15 * Description: Backup tool to export all your WordPress data as CSV file. eCommerce data of WooCommerce, eCommerce, Custom Post and Custom field information along with default WordPress modules. … … 39 39 exit; // Exit if accessed directly 40 40 41 define('IMPORTER_VERSION', '7. 22');42 define('EXPORTER_VERSION', '2.1 7.1');41 define('IMPORTER_VERSION', '7.33'); 42 define('EXPORTER_VERSION', '2.18'); 43 43 require_once('Plugin.php'); 44 44 require_once('SmackExporterInstall.php');
Note: See TracChangeset
for help on using the changeset viewer.