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