WC_Email::get_heading()publicWC 1.0

Get email heading.

Method of the class: WC_Email{}

Hooks from the method

Return

String.

Usage

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

WC_Email::get_heading() code WC 8.7.0

public function get_heading() {
	return apply_filters( 'woocommerce_email_heading_' . $this->id, $this->format_string( $this->get_option( 'heading', $this->get_default_heading() ) ), $this->object, $this );
}