WC_Email::get_title()publicWC 1.0

Return the email's title

Method of the class: WC_Email{}

Hooks from the method

Return

String.

Usage

$WC_Email = new WC_Email();
$WC_Email->get_title();

WC_Email::get_title() code WC 8.6.1

public function get_title() {
	return apply_filters( 'woocommerce_email_title', $this->title, $this );
}