classic-body.php
1 year ago
classic-field.php
1 year ago
classic-footer.php
1 year ago
classic-header.php
1 year ago
classic-queries.php
1 year ago
classic-style.php
1 year ago
compact-body.php
1 year ago
compact-field.php
1 year ago
compact-footer.php
1 year ago
compact-header.php
1 year ago
compact-queries.php
1 year ago
compact-style.php
1 year ago
general-body-plain.php
1 year ago
general-body.php
1 year ago
general-footer.php
1 year ago
general-header.php
1 year ago
general-queries.php
1 year ago
general-style.php
1 year ago
summary-body-plain.php
1 year ago
summary-body.php
1 year ago
summary-footer-plain.php
1 year ago
summary-footer.php
1 year ago
summary-header.php
1 year ago
summary-queries.php
1 year ago
summary-style.php
1 year ago
summary-footer.php
47 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Summary footer template. |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/wpforms/emails/summary-footer.php. |
| 6 | * |
| 7 | * @since 1.6.2.3 |
| 8 | */ |
| 9 | |
| 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | exit; |
| 12 | } |
| 13 | |
| 14 | ?> |
| 15 | |
| 16 | </td> |
| 17 | </tr> |
| 18 | <tr> |
| 19 | <td align="<?php echo is_rtl() ? 'right' : 'left'; ?>" valign="top" class="footer"> |
| 20 | <?php |
| 21 | printf( |
| 22 | wp_kses( /* translators: %1$s - site URL, %2$s - link to the documentation. */ |
| 23 | __( 'This email was auto-generated and sent from %1$s. Learn <a href="%2$s">how to disable</a>', 'wpforms-lite' ), |
| 24 | [ |
| 25 | 'a' => [ |
| 26 | 'href' => [], |
| 27 | ], |
| 28 | ] |
| 29 | ), |
| 30 | '<a href="' . esc_url( home_url() ) . '">' . esc_html( wp_specialchars_decode( get_bloginfo( 'name' ) ) ) . '</a>', |
| 31 | 'https://wpforms.com/docs/how-to-use-email-summaries/#disable-email-summaries' |
| 32 | ); |
| 33 | ?> |
| 34 | </td> |
| 35 | </tr> |
| 36 | </table> |
| 37 | </td> |
| 38 | </tr> |
| 39 | </table> |
| 40 | </div> |
| 41 | </td> |
| 42 | <td><!-- Deliberately empty to support consistent sizing and layout across multiple email clients. --></td> |
| 43 | </tr> |
| 44 | </table> |
| 45 | </body> |
| 46 | </html> |
| 47 |