WC_Order_Refund_Data_Store_CPT::get_post_title()

Get a title for the new post type.


Description Description


Return Return

(string)


Top ↑

Source Source

File: includes/data-stores/class-wc-order-refund-data-store-cpt.php

	protected function get_post_title() {
		return sprintf(
			/* translators: %s: Order date */
			__( 'Refund – %s', 'woocommerce' ),
			strftime( _x( '%b %d, %Y @ %I:%M %p', 'Order date parsed by strftime', 'woocommerce' ) ) // phpcs:ignore WordPress.WP.I18n.MissingTranslatorsComment, WordPress.WP.I18n.UnorderedPlaceholdersText
		);
	}

Top ↑

User Contributed Notes User Contributed Notes

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