Changeset 2928145
- Timestamp:
- 06/19/2023 05:48:05 PM (3 years ago)
- Location:
- wp-dummy-content-generator/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
includes/functions-posts.php (modified) (1 diff)
-
wp_dummy_content_generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dummy-content-generator/trunk/README.txt
r2921341 r2928145 86 86 2.1.1 - Minor bug fixes and performance improvements. 87 87 2.1.2 - Fixed the redirection issue when activated through WP CLI. 88 2.3.0 - Added post type product to dropdown if woocommerce is not installed and post type "product" is created. 88 89 == Upgrade Notice == -
wp-dummy-content-generator/trunk/includes/functions-posts.php
r2785559 r2928145 19 19 $posttypes_array[$post_type] = $wp_dummy_content_generator_pt_name; 20 20 } 21 unset($posttypes_array['product']); //exclude 'product' post type as we are providing separate section for products 21 if ( class_exists( 'WooCommerce' ) ) { 22 unset($posttypes_array['product']); //exclude 'product' post type as we are providing separate section for products 23 } 22 24 return $posttypes_array; 23 25 } -
wp-dummy-content-generator/trunk/wp_dummy_content_generator.php
r2921341 r2928145 17 17 * Plugin URI: https://tutsocean.com/wp-dummy-content-generator/ 18 18 * Description: This plugin is purely made by developers and for developers. Use this plugin to generate dummy/fake users, posts, custom posts and woocommerce products for various purposes. 19 * Version: 2. 2.119 * Version: 2.3.0 20 20 * Author: Deepak anand 21 21 * Author URI: https://tutsocean.com/about-me … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '2. 2.1' );39 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '2.3.0' ); 40 40 define( 'wp_dummy_content_generator_PLUGIN_BASE_URL',plugin_basename( __FILE__ )); 41 41 define( 'wp_dummy_content_generator_PLUGIN_BASE_URI',plugin_dir_path( __FILE__ ));
Note: See TracChangeset
for help on using the changeset viewer.