Changeset 2879760
- Timestamp:
- 03/14/2023 12:11:27 PM (3 years ago)
- Location:
- meks-video-importer/trunk
- Files:
-
- 3 edited
-
meks-video-importer.php (modified) (2 diffs)
-
partials/import.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
meks-video-importer/trunk/meks-video-importer.php
r2463465 r2879760 3 3 Plugin Name: Meks Video Importer 4 4 Description: Easily import YouTube and Vimeo videos in bulk to your posts, pages or any custom post type. 5 Version: 1.0. 95 Version: 1.0.10 6 6 Author: Meks 7 7 Author URI: http://mekshq.com … … 19 19 * Define useful constants here 20 20 */ 21 define( 'MEKS_VIDEO_IMPORTER_VERSION', '1.0. 9' );21 define( 'MEKS_VIDEO_IMPORTER_VERSION', '1.0.10' ); 22 22 define( 'MEKS_VIDEO_IMPORTER_BASENAME', plugin_basename(__FILE__) ); 23 23 define( 'MEKS_VIDEO_IMPORTER_DIR', plugin_dir_path( __FILE__ ) ); -
meks-video-importer/trunk/partials/import.php
r2022010 r2879760 105 105 foreach ($post_types as $post_type) : 106 106 if ($post_type->taxonomies): 107 //print_r( $post_type->taxonomies ); 107 108 $saved_taxonomies = $import_options['mvi-taxonomies']; 108 109 foreach ($post_type->taxonomies as $taxonomy) : 110 111 if( !is_array($taxonomy) ){ 112 continue; 113 } 114 109 115 ?> 110 116 <tr class="form-field mvi-<?php echo esc_attr($taxonomy['id']); ?> <?php echo esc_attr($post_type->name)?> type-change post-type <?php echo esc_attr(meks_video_importer_taxonomy_classes($post_type)); ?>"> -
meks-video-importer/trunk/readme.txt
r2871668 r2879760 5 5 Requires at least: 3.7 6 6 Tested up to: 6.1 7 Stable tag: 1.0. 97 Stable tag: 1.0.10 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 46 46 47 47 == Changelog == 48 49 = 1.0.10 = 48 50 49 51 * Improved: PHP 8 compatibility tweaks
Note: See TracChangeset
for help on using the changeset viewer.