view.php
10 lines
| 1 | <?php |
| 2 | printf( |
| 3 | '<div %1$s><time datetime="%2$s" aria-label="%4$s">%3$s</time></div>', |
| 4 | $wrapper_attributes, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 5 | $unformatted_date, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 6 | $formatted_date, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 7 | /* translators: %s: formatted date of the review */ |
| 8 | esc_attr( sprintf( __( 'Reviewed on %s', 'surecart' ), $formatted_date ) ) |
| 9 | ); |
| 10 |