Hooks Overview

Overview of Actions and Filters available in WooNooW

Introduction

WooNooW provides a rich set of actions and filters allowing developers to customize almost every aspect of the plugin without modifying core files.

Hook Categories

Usage Example

php
add_filter('woonoow_email_default_subject', function($subject, $recipient, $event) {
    if ($event === 'subscription_renewal') {
        return 'Your subscription is renewing soon!';
    }
    return $subject;
}, 10, 3);

Last updated Jan 31, 2024