WC_Email::get_subject()publicWC 1.0

Get email subject.

Method of the class: WC_Email{}

Hooks from the method

Return

String.

Usage

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

WC_Email::get_subject() code WC 8.7.0

public function get_subject() {
	return apply_filters( 'woocommerce_email_subject_' . $this->id, $this->format_string( $this->get_option( 'subject', $this->get_default_subject() ) ), $this->object, $this );
}