diff --git a/plugin-boilerplate/class-plugin-boilerplate.php b/plugin-boilerplate/class-plugin-boilerplate.php index 3a8ea2e..893d782 100644 --- a/plugin-boilerplate/class-plugin-boilerplate.php +++ b/plugin-boilerplate/class-plugin-boilerplate.php @@ -95,7 +95,7 @@ class PluginName { * http://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters */ add_action( 'TODO', array( $this, 'action_method_name' ) ); - add_filter(' TODO', array( $this, 'filter_method_name' ) ); + add_filter( 'TODO', array( $this, 'filter_method_name' ) ); }