Plugin Directory

Changeset 2968848


Ignore:
Timestamp:
09/19/2023 05:18:29 PM (3 years ago)
Author:
deepakanand767
Message:

Revised menu item labels for enhanced clarity of meaning.

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

Legend:

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

    r2950790 r2968848  
    1151153.0.0 - Comes with numerous notable enhancements to performance and security.
    1161163.1.0 - Adjusted to be compatible with the significant update release of WooCommerce and WordPress
     1173.1.1 - Revised menu item labels for enhanced clarity of meaning.
    117118== Upgrade Notice ==
  • wp-dummy-content-generator/trunk/includes/functions.php

    r2931950 r2968848  
    33function wp_dummy_content_generatorDashboard(){
    44    add_menu_page( 'wp_dummy_content_generator dashboard', 'Dummy Content Generator', 'manage_options', 'wp_dummy_content_generator-dashboard', 'wp_dummy_content_generatorMainDashboard','dashicons-database-view',58);
    5     add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Users', 'Users', 'read', 'wp_dummy_content_generator-users', 'wp_dummy_content_generatorUsers');
    6     add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Posts', 'Posts', 'read', 'wp_dummy_content_generator-posts', 'wp_dummy_content_generatorPosts');
    7     add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Products', 'Products', 'read', 'wp_dummy_content_generator-products', 'wp_dummy_content_generatorProducts');
    8     add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Thumbnails', 'Thumbnails', 'read', 'wp_dummy_content_generator-thumbnails', 'wp_dummy_content_generatorThumbnails');
     5    add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Generate Users', 'Generate Users', 'read', 'wp_dummy_content_generator-users', 'wp_dummy_content_generatorUsers');
     6    add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Generate Posts', 'Generate Posts', 'read', 'wp_dummy_content_generator-posts', 'wp_dummy_content_generatorPosts');
     7    add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Generate Products', 'Generate Products', 'read', 'wp_dummy_content_generator-products', 'wp_dummy_content_generatorProducts');
     8    add_submenu_page ( 'wp_dummy_content_generator-dashboard', 'Manage Thumbnails', 'Manage Thumbnails', 'read', 'wp_dummy_content_generator-thumbnails', 'wp_dummy_content_generatorThumbnails');
    99}
    1010function wp_dummy_content_generatorMainDashboard(){
  • wp-dummy-content-generator/trunk/wp_dummy_content_generator.php

    r2950790 r2968848  
    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.1.0
     19 * Version:           3.1.1
    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.1.0' );
     39define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.1.1' );
    4040define( 'wp_dummy_content_generator_PLUGIN_BASE_URL',plugin_basename( __FILE__ ));
    4141define( 'wp_dummy_content_generator_PLUGIN_BASE_URI',plugin_dir_path( __FILE__ ));
Note: See TracChangeset for help on using the changeset viewer.