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