Plugin Directory

Changeset 3186626


Ignore:
Timestamp:
11/12/2024 04:15:14 PM (17 months ago)
Author:
deepakanand767
Message:

Plugin compatible with 6.7 version of WordPress

Location:
wp-dummy-content-generator/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-dummy-content-generator/trunk/README.txt

    r3146564 r3186626  
    44Tags: WP Dummy Content Generator, WordPress dummy content plugin, Dummy content generation for WordPress, dummy posts and custom posts, woocommerce products
    55Requires at least: 6.0
    6 Tested up to: 6.6
     6Tested up to: 6.7
    77Stable tag: trunk
    88Requires PHP: 7.4
     
    1271273.4.3 - Fixed user data generation issue for firstname and last name.
    1281283.4.4 - Used admin_url() instead of hardcoding the admin URL.
     1293.4.5 - Minor changes.
    129130== Upgrade Notice ==
  • wp-dummy-content-generator/trunk/wp_dummy_content_generator.php

    r3146564 r3186626  
    1717 * Plugin URI:        https://wpdcg.online/
    1818 * 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.4
     19 * Version:           3.4.5
    2020 * Author:            Deepak anand
    2121 * Author URI:        https://wpdcg.online/about-us/
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    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 */
     46define( '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 */
     55define( '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 */
     64define( '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 */
     73define( "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 */
     82define( "wp_dummy_content_generator_PLUGIN_NAME", 'WP Dummy Content Generator' );
    4483/**
    4584 * The code that runs during plugin activation.
     
    81120
    82121
     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 */
    83135add_action( 'before_woocommerce_init', function() {
    84136    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
Note: See TracChangeset for help on using the changeset viewer.