Changeset 2989857
- Timestamp:
- 11/06/2023 12:18:11 PM (2 years ago)
- Location:
- simple-export-import-for-acf-data/trunk
- Files:
-
- 4 edited
-
app.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/SeipImport.php (modified) (1 diff)
-
view/_import.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-export-import-for-acf-data/trunk/app.php
r2973550 r2989857 5 5 Plugin URI: https://www.opcodespace.com 6 6 Author: Opcodespace <mehedee@opcodespace.com> 7 Version: 1.3.1 27 Version: 1.3.13 8 8 Text Domain: simple-export-import-for-acf-data 9 9 */ … … 13 13 define("SEIP_VIEW_PATH", wp_normalize_path(plugin_dir_path(__FILE__) . "view/")); 14 14 define("SEIP_ASSETSURL", plugins_url("assets/", __FILE__)); 15 define('SEIP_PLUGIN_VERSION', '1.3.1 2');15 define('SEIP_PLUGIN_VERSION', '1.3.13'); 16 16 define('PAID_TEXT', '<small class="paid_text">(This is for paid user)</small>'); 17 17 -
simple-export-import-for-acf-data/trunk/readme.txt
r2973550 r2989857 3 3 Tags: Export, Import, Page, Post, Custom Post Type, Advanced custom field, Field Value 4 4 Requires at least: 5.4.0 5 Tested up to: 6.3. 15 Tested up to: 6.3.2 6 6 Requires PHP: 7.0 7 7 Stable tag: 1.3.12 … … 96 96 97 97 == Changelog == 98 = 1.3.13 = 99 * Bug Fixed: Import Post type filtering fixed. 100 98 101 = 1.3.12 = 99 102 * Bug Fixed: Saving license key -
simple-export-import-for-acf-data/trunk/src/SeipImport.php
r2961647 r2989857 82 82 83 83 foreach ($posts as $post) { 84 if(empty($post)){ 85 continue; 86 } 84 87 $this->post_data($post, $settings); 85 88 -
simple-export-import-for-acf-data/trunk/view/_import.php
r2970520 r2989857 27 27 </td> 28 28 <td> 29 <select name="post_type" class="chosen-select ">29 <select name="post_type" class="chosen-select post_type"> 30 30 <option value="">Please Select Type</option> 31 31 <?php foreach (get_post_types([], 'objects') as $post_type):
Note: See TracChangeset
for help on using the changeset viewer.