Changeset 2968848
- Timestamp:
- 09/19/2023 05:18:29 PM (3 years ago)
- Location:
- wp-dummy-content-generator/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
includes/functions.php (modified) (1 diff)
-
wp_dummy_content_generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dummy-content-generator/trunk/README.txt
r2950790 r2968848 115 115 3.0.0 - Comes with numerous notable enhancements to performance and security. 116 116 3.1.0 - Adjusted to be compatible with the significant update release of WooCommerce and WordPress 117 3.1.1 - Revised menu item labels for enhanced clarity of meaning. 117 118 == Upgrade Notice == -
wp-dummy-content-generator/trunk/includes/functions.php
r2931950 r2968848 3 3 function wp_dummy_content_generatorDashboard(){ 4 4 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'); 9 9 } 10 10 function wp_dummy_content_generatorMainDashboard(){ -
wp-dummy-content-generator/trunk/wp_dummy_content_generator.php
r2950790 r2968848 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.1. 019 * Version: 3.1.1 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.1. 0' );39 define( 'wp_dummy_content_generator_PLUGIN_NAME_VERSION', '3.1.1' ); 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.