Changeset 3186626
- Timestamp:
- 11/12/2024 04:15:14 PM (17 months ago)
- Location:
- wp-dummy-content-generator/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
wp_dummy_content_generator.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dummy-content-generator/trunk/README.txt
r3146564 r3186626 4 4 Tags: WP Dummy Content Generator, WordPress dummy content plugin, Dummy content generation for WordPress, dummy posts and custom posts, woocommerce products 5 5 Requires at least: 6.0 6 Tested up to: 6. 66 Tested up to: 6.7 7 7 Stable tag: trunk 8 8 Requires PHP: 7.4 … … 127 127 3.4.3 - Fixed user data generation issue for firstname and last name. 128 128 3.4.4 - Used admin_url() instead of hardcoding the admin URL. 129 3.4.5 - Minor changes. 129 130 == Upgrade Notice == -
wp-dummy-content-generator/trunk/wp_dummy_content_generator.php
r3146564 r3186626 17 17 * Plugin URI: https://wpdcg.online/ 18 18 * Description: The "WP Dummy Content Generator" plugin is particularly useful for developers, designers, and website administrators who want to quickly populate their WordPress site with realistic dummy content. It saves time and effort by automatically generating content that mimics real posts and pages, enabling you to focus on other aspects of website development or testing. 19 * Version: 3.4. 419 * Version: 3.4.5 20 20 * Author: Deepak anand 21 21 * Author URI: https://wpdcg.online/about-us/ … … 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', '3.4.4' ); 40 define( 'wp_dummy_content_generator_PLUGIN_BASE_URL',plugin_basename( __FILE__ )); 41 define( 'wp_dummy_content_generator_PLUGIN_BASE_URI',plugin_dir_path( __FILE__ )); 42 define("wp_dummy_content_generator_PLUGIN_DIR",plugin_basename( __DIR__ )); 43 define("wp_dummy_content_generator_PLUGIN_NAME",'WP Dummy Content Generator'); 39 /** 40 * The version of the plugin. 41 * 42 * @since 1.0.0 43 * 44 * @var string 45 */ 46 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.4.5' ); 47 48 /** 49 * The base URL of the plugin. 50 * 51 * @since 1.0.0 52 * 53 * @var string 54 */ 55 define( 'wp_dummy_content_generator_PLUGIN_BASE_URL', plugin_basename( __FILE__ ) ); 56 57 /** 58 * The base directory path of the plugin. 59 * 60 * @since 1.0.0 61 * 62 * @var string 63 */ 64 define( 'wp_dummy_content_generator_PLUGIN_BASE_URI', plugin_dir_path( __FILE__ ) ); 65 66 /** 67 * The base directory of the plugin. 68 * 69 * @since 1.0.0 70 * 71 * @var string 72 */ 73 define( "wp_dummy_content_generator_PLUGIN_DIR", plugin_basename( __DIR__ ) ); 74 75 /** 76 * The name of the plugin. 77 * 78 * @since 1.0.0 79 * 80 * @var string 81 */ 82 define( "wp_dummy_content_generator_PLUGIN_NAME", 'WP Dummy Content Generator' ); 44 83 /** 45 84 * The code that runs during plugin activation. … … 81 120 82 121 122 /** 123 * Declare compatibility with the "Custom Order Tables" feature of WooCommerce. 124 * 125 * This is done by hooking into the `before_woocommerce_init` action, which is 126 * called before WooCommerce is initialized. This allows us to declare 127 * compatibility with the feature before WooCommerce is loaded. 128 * 129 * The `declare_compatibility` method is part of the `FeaturesUtil` class in 130 * WooCommerce, which is responsible for managing features and declaring 131 * compatibility with them. 132 * 133 * @see \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility() 134 */ 83 135 add_action( 'before_woocommerce_init', function() { 84 136 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
Note: See TracChangeset
for help on using the changeset viewer.