Abstract_WC_Order_Data_Store_CPT::get_post_title()
Get a title for the new post type.
Description Description
Return Return
(string)
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 }