Skip to content

Commit fe2794f

Browse files
committed
Update README.md file
1 parent b85e650 commit fe2794f

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# wp-boilerplate-plugin-with-vuejs
1+
# WP CRUD Project With vue
22

3-
#### A simple boilerplate plugin for WordPress using vue js.
3+
#### A simple CRUD plugin for WordPress using vue js.
44

55

66
## How to use:
@@ -18,11 +18,11 @@
1818

1919
* Open with an IDE (Vscode, sublime, PhpStorm etc)
2020

21-
* Change all the `crud_project` to Your-Plugin-Name
22-
* Change all the `CRUDPROJECT` to YOURCRUDPROJECT (Upper case)
23-
* Change all the `CrudProject` to YourCrudProject (Upper Camel Case)
24-
* Change all the `Crud_Project` to your_crud_project
25-
* Change all the `crud_project` to yourcrud_project
21+
* Change all the `crud_project` to Your-plugin_name
22+
* Change all the `CRUDPROJECT` to YOUR-PLUGINNAME (Upper case)
23+
* Change all the `CrudProject` to Your-PluginName (Upper Camel Case)
24+
* Change all the `Crud_Project` to Your-Plugin_Name
25+
* Change all the `crud_project` to your-plugin_name
2626

2727

2828
## All done have fun

crud-project.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
/*
44
Plugin Name: CRUD Project
5-
Plugin URI: #
6-
Description: A WordPress boilerplate plugin with Vue js.
5+
Plugin URI: https://github.com/ruhel241/wp-crud-project-plugin-with-vuejs
6+
Description: A WordPress CRUD plugin with Vue js.
77
Version: 1.0.0
8-
Author: #
9-
Author URI: #
8+
Author: Md.Ruhel Khan
9+
Author URI: https://github.com/ruhel241
1010
License: GPLv2 or later
1111
Text Domain: crud_project
1212
*/
@@ -112,11 +112,11 @@ public function registerShortcodes()
112112
(new CrudProject())->boot();
113113
});
114114

115-
register_activation_hook(__FILE__, function ($newWorkWide) {
116-
//require_once(CRUDPROJECT_DIR . 'includes/Classes/Activator.php');
117-
$activator = new \CrudProject\Classes\Activator();
118-
$activator->migrateDatabases($newWorkWide);
119-
});
115+
// register_activation_hook(__FILE__, function ($newWorkWide) {
116+
// //require_once(CRUDPROJECT_DIR . 'includes/Classes/Activator.php');
117+
// $activator = new \CrudProject\Classes\Activator();
118+
// $activator->migrateDatabases($newWorkWide);
119+
// });
120120

121121
} else {
122122
add_action('admin_init', function () {

0 commit comments

Comments
 (0)