wp_before_execute_ability

wp_before_execute_ability

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.9

do_action('wp_before_execute_ability') is found 1 times:

  • /wp-includes/abilities-api/class-wp-ability.php line 631
    		 *
    		 * @param string $ability_name The name of the ability.
    		 * @param mixed  $input        The input data for the ability.
    		 */
    		do_action( 'wp_before_execute_ability', $this->name, $input );
    
    		$result = $this->do_execute( $input );
    		if ( is_wp_error( $result ) ) {
    			return $result;
    		}