We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Quick Start section of the README.md, there should be a note saying that the extended class should be initialized.
README.md
For example:
new JPB_Async_Task;
It's a small thing, but people can over look that 😄
Update:
I see that it's noted on this line:
Make sure that you instantiate your asynchronous task once. Do this no earlier than the 'plugins_loaded' action.
Maybe add a code example?
function jpb_async_task_init() { new JPB_Async_Task; } add_action( 'plugins_loaded', 'jpb_async_task_init' );
I would normally write this as an anonymous function, but WP supports a minimum of PHP 5.2.4.
The text was updated successfully, but these errors were encountered:
@r-a-y I agree. Thanks for pointing that out.
Sorry, something went wrong.
Added a PR
Successfully merging a pull request may close this issue.
In the Quick Start section of the
README.md
, there should be a note saying that the extended class should be initialized.For example:
It's a small thing, but people can over look that 😄
Update:
I see that it's noted on this line:
Maybe add a code example?
I would normally write this as an anonymous function, but WP supports a minimum of PHP 5.2.4.
The text was updated successfully, but these errors were encountered: