WC_Order_Refund_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/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
);
}