Abstract_WC_Order_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/abstract-wc-order-data-store-cpt.php

	protected function get_post_title() {
		// @codingStandardsIgnoreStart
		/* translators: %s: Order date */
		return sprintf( __( 'Order – %s', 'woocommerce' ), strftime( _x( '%b %d, %Y @ %I:%M %p', 'Order date parsed by strftime', 'woocommerce' ) ) );
		// @codingStandardsIgnoreEnd
	}


Top ↑

User Contributed Notes User Contributed Notes

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