LLMS_Abstract_Notification_View::get_body( $merge = true )
Retrieve the body for the notification
Return Return
(string)
Source Source
File: includes/abstracts/llms.abstract.notification.view.php
public function get_body( $merge = true ) {
$body = $this->get_option( 'body', apply_filters( $this->get_filter( 'set_body' ), $this->set_body(), $this ) );
if ( $merge ) {
$body = $this->get_merged_string( $body );
}
return apply_filters( $this->get_filter( 'get_body' ), wpautop( $body ), $this );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.8.0 | Introduced. |