This plugin is an open source project and we would love you to help us make it better.
A well formatted issue is appreciated, and goes a long way in helping us help you.
- Make sure you have a GitHub account
- Submit a Github issue by:
- Clearly describing the issue
- Provide a descriptive summary
- Explain the expected behavior
- Explain the actual behavior
- Provide steps to reproduce the actual behavior
- Put application stacktrace as text (in a Gist for bonus points)
- Any relevant stack traces
If you provide code, make sure it is formatted with the triple backticks (```).
At this point, we'd love to tell you how long it will take for us to respond, but we just don't know.
We accept pull requests to plugin for:
- Fixing bugs
- Adding new features
Not all features proposed will be added but we are open to having a conversation about a feature you are championing.
Here's a quick guide:
- Fork the repo.
- Create a new branch and make your changes.
- Push to your fork and submit a pull request. For more information, see Github's pull request help section.
At this point you're waiting on us.
Expect a conversation regarding your pull request, questions, clarifications, and so on.
Ensure that you have installed Docker and docker-compose in your Operating System.
Then use following commands:
make dockerize
– to run WordPress instance on http://localhost:8000/make shell
– to openbash
inside Docker container
Simply delete the .data
directory from the root directory.
Inside container run the script /usr/local/bin/activate_debug
.
Use custom function write_log( $smth );
from the plugin
and look at the /wp-content/debug.log
inside the container.
Run make install_linters
inside repo's directory.
What it does:
- Install PHP_CodeSniffer to
phpcs
directory - Install WordPress Coding Standards to
wpcs
directory - Install
bin/pre-commit
Git hook to.git/hooks/pre-commit
.
On each git commit
command phpcs
will started automatically! :-)
Report's example output:
$ git commit
[PHP Style][Info]: Checking PHP Style
FILE: ...rrent-category/widget-to-display-posts-from-current-category.php
----------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------
3 | ERROR | You must use "/**" style comments for a file comment
| | (Squiz.Commenting.FileComment.WrongStyle)
----------------------------------------------------------------------
Time: 165ms; Memory: 8Mb
[PHP Style][Error]: Fix the issues and commit again