Skip to main content

Example Class

docs-source

As you've already seen in the WP-CLI chapter, we have many finished features prepared for you. However, we want to make things even easier for you, so we created an example class for you to use.

If you want to add a new class to your project but don't want to write all the boilerplate around it, just use the WP-CLI command:

create_service_example

The output will ask you to input the correct folder path relative to the src folder and specify the class name. Everything else will be done for you, setting the namespace, package, vendor prefixes, class and folder name, and you will be set to write your class.

After that, add your WordPress hooks to the register method, provide its callback, and let the magic happen.