mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
replacing all midline tabs and replacing the with spaces to comply with the coding standards
fixes #44
This commit is contained in:
parent
95150ecfdc
commit
6ccf4af27d
1 changed files with 26 additions and 26 deletions
|
@ -279,8 +279,8 @@ class PluginName {
|
|||
* NOTE: Actions are points in the execution of a page or process
|
||||
* lifecycle that WordPress fires.
|
||||
*
|
||||
* WordPress Actions: http://codex.wordpress.org/Plugin_API#Actions
|
||||
* Action Reference: http://codex.wordpress.org/Plugin_API/Action_Reference
|
||||
*. WordPress Actions: http://codex.wordpress.org/Plugin_API#Actions
|
||||
* . Action Reference: http://codex.wordpress.org/Plugin_API/Action_Reference
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
@ -293,15 +293,15 @@ class PluginName {
|
|||
* before saving it or sending it to the browser.
|
||||
*
|
||||
* WordPress Filters: http://codex.wordpress.org/Plugin_API#Filters
|
||||
* Filter Reference: http://codex.wordpress.org/Plugin_API/Filter_Reference
|
||||
*. Filter Reference: http://codex.wordpress.org/Plugin_API/Filter_Reference
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public function filter_method_name() {
|
||||
// TODO: Define your filter method here
|
||||
// TODO:....Define your filter method here
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// TODO: Update the instantiation call of your plugin to the name given at the class definition
|
||||
// TODO:....Update the instantiation call of your plugin to the name given at the class definition
|
||||
PluginName::get_instance();
|
Loading…
Reference in a new issue