WC_Order_Refund_Data_Store_CPT::get_post_title()protectedWC 1.0

Get a title for the new post type.

Method of the class: WC_Order_Refund_Data_Store_CPT{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_post_title();

WC_Order_Refund_Data_Store_CPT::get_post_title() code WC 9.2.3

protected function get_post_title() {
	return sprintf(
		/* translators: %s: Order date */
		__( 'Refund – %s', 'woocommerce' ),
		( new DateTime( 'now' ) )->format( _x( 'M d, Y @ h:i A', 'Order date parsed by DateTime::format', 'woocommerce' ) ) // phpcs:ignore WordPress.WP.I18n.MissingTranslatorsComment, WordPress.WP.I18n.UnorderedPlaceholdersText
	);
}