AnsPress::add_action( string $hook, object $component, string $callback, $priority = 10, $accepted_args = 1 )
Description #
Add a new action to the collection to be registered with WordPress.
Parameters #
- $hookstring (Required) The name of the WordPress action that is being registered.
- $componentobject (Required) A reference to the instance of the object on which the action is defined.
- $callbackstring (Required) The name of the function definition on the $component.
- int (Optional) $accepted_args The number of arguments that should be passed to the $callback.
Source #
File: anspress-question-answer.php
public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) { $this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args ); }
Expand full source code Collapse full source code View on GitHub: anspress-question-answer.php:418
Add your comment