Dev Resources

  • Home
  • Reference
  • BuddyX Theme
  • Functions
  • Hooks
  • Classes
Filter by type:
Search
Browse: Home / Reference / Classes / WC_Email_Customer_Refunded_Order / WC_Email_Customer_Refunded_Order::get_heading()

WC_Email_Customer_Refunded_Order::get_heading()

Get email heading.

Contents

  • Description
    • Return
    • Source
  • Related
    • Uses
    • Used By
  • User Contributed Notes

Description #Description


Return #Return

(string)


Top ↑

Source #Source

File: includes/emails/class-wc-email-customer-refunded-order.php

		public function get_heading() {
			if ( $this->partial_refund ) {
				$heading = $this->get_option( 'heading_partial', $this->get_default_heading( true ) );
			} else {
				$heading = $this->get_option( 'heading_full', $this->get_default_heading() );
			}
			return apply_filters( 'woocommerce_email_heading_customer_refunded_order', $this->format_string( $heading ), $this->object, $this );
		}

Expand full source code Collapse full source code


Top ↑

Related #Related

Top ↑

Uses #Uses

Uses
Uses Description
includes/emails/class-wc-email-customer-refunded-order.php: WC_Email_Customer_Refunded_Order::get_default_heading()

Get email heading.

Top ↑

Used By #Used By

Used By
Used By Description
includes/emails/class-wc-email-customer-refunded-order.php: WC_Email_Customer_Refunded_Order::get_content_html()

Get content html.

includes/emails/class-wc-email-customer-refunded-order.php: WC_Email_Customer_Refunded_Order::get_content_plain()

Get content plain.


Top ↑

User Contributed Notes #User Contributed Notes

You must log in before being able to contribute a note or feedback.

Proudly powered by WordPress