get_noptin_default_newsletter_body()
Returns the default newsletter body.
Return Return
(string.)
Source Source
File: includes/functions.php
function get_noptin_default_newsletter_body() { $body = include locate_noptin_template( 'default-email-body.php' ); /** * Filters the default newsletter body * * @param string $body The default newsletter body */ return apply_filters( 'noptin_default_newsletter_body', $body ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.2.0 | Introduced. |